Okay in a form, I have the user enter in two values say temperature and
humidity. Now, humidity is more important and temp is secondary, but there
may not be a record that matches either exactly, so I want to be able to have
them type in 50 and 80 and then have the form spit out results that are close
(or exactly match) what the user entered. Currently, I have a box where they
can enter the "tolerance", but ideally I don't want the user to be able to
change the tolerance, I want the form to automatically only provide results
consistent with the tolerance I set.
Rick B said:
You'd need to give us a bit more specific information.
Certainly you can do something like...
Between [Entervalue]-10 and [Entervalue]+10
....to find values 'close' to an entered parameter.
--
Rick B
MooliiBeth said:
I want a form to give results from a database that are closest to the values
entered (within a tolerance that I would like to be able to set). Of the two
values, I would like one to have priority over the other for the values
returned. Is this possible? Help? Thanks!!