Number Range

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How would I capture a certain value. For example, I only want values above 12
in a field, then I want to calculate the value above 12. If the field had 20
I want to calculate 8.
 
Not sure where you want to do this, but in an unbound textbox, you could
put...


= 20 - [SomeFieldName]


In the validation of the SomeFieldName control you could specify that the
entry must be greater than 12.

Rick B
 
Back
Top