query +/- 5%

L

Lasse T

Hi !!

Hope you can help me with this.

How do I write the formula in a query that will pick all the values within 5
percent up and down from a value I have in an unbound text box in a form?

Thanks in advance

Lasse T
-------------
 
B

Brian

Lasse T said:
Hi !!

Hope you can help me with this.

How do I write the formula in a query that will pick all the values within 5
percent up and down from a value I have in an unbound text box in a form?

Thanks in advance

Lasse T
=(Forms!frmSomeForm!txtSomeTextBox*0.95) AND
<=(Forms!frmSomeForm!txtSomeTextBox*1.05)
 
Top