I have the following data in tblProductBottle
ID, ProductBottleMinLength, ProductBottleMaxLength
1, 80, 90
2, 85, 90
3, 80, 85
I want to filter this data in a query based on criteria entered on a form. The form has the unbound field: Forms!frmFindProduct!intBottleDiameter
if 87 is entered into intBottleDiameter, only record 2 should be returned
if 81 is entered into intBottleDiameter, both records 1 & 3 should be returned
if 91 is entered into intBottleDiameter, no record should be returned
What should the query be to return the correct results?
ID, ProductBottleMinLength, ProductBottleMaxLength
1, 80, 90
2, 85, 90
3, 80, 85
I want to filter this data in a query based on criteria entered on a form. The form has the unbound field: Forms!frmFindProduct!intBottleDiameter
if 87 is entered into intBottleDiameter, only record 2 should be returned
if 81 is entered into intBottleDiameter, both records 1 & 3 should be returned
if 91 is entered into intBottleDiameter, no record should be returned
What should the query be to return the correct results?