In the criteria row for the field,
> 900 and <1100 'does not include 900 or 1100
If you want to include the 900 and 1100, then
Between 900 and 1100 'includes 900 and 1100
or
>= 900 and <= 1100 'includes 900 and 1100
The WHERE clause of the query:
Code:
WHERE fCreateBilling!Text161 Between 900 And 1100;
or
WHERE fCreateBilling!Text161 >= 900 and <= 1100;
EDIT:
I might have misread the question.
If you have a control on a form, the value in the control is 1000 and you want all records that are +-100 of that value, then try
The WHERE clause of the query:
Code:
WHERE theField Between [Forms]![fCreateBilling]![Text161]-100 And [Forms]![fCreateBilling]![Text161]+100;
Change theField to your field name
-------------------------------------------------------------------------------------------
In the criteria row for the field,
> [Forms]![fCreateBilling]![Text161]-100 and <[Forms]![fCreateBilling]![Text161]+100
>= [Forms]![fCreateBilling]![Text161]-100 and <=[Forms]![fCreateBilling]![Text161]+100
Between [Forms]![fCreateBilling]![Text161]-100 And [Forms]![fCreateBilling]![Text161]+100