I have three fields of data. I want a fourth field to show the minimum of the three. I put the following code in the after update event of the third field:
Me!Minimum_Field.Value = Minimum(Me!Field1.Value, Me!Field2.Value, Me!Field3.Value)
error = minimum not defined.
This applies to only one record. There are no nulls or zeros only positive integers to deal with. Ideas?
Me!Minimum_Field.Value = Minimum(Me!Field1.Value, Me!Field2.Value, Me!Field3.Value)
error = minimum not defined.
This applies to only one record. There are no nulls or zeros only positive integers to deal with. Ideas?