S
Steve
I have a field the will require an input in the following format:
"OR#####" where there is always the characters, "OR" and some number of
digits afterward. What I'm trying to do is to edit the field as the
user is leaving it so if they just typed the number the "OR" whould get
pre-pended to it. Is this something that should be done in the
BeforeUpdate section, ie,
If IsNumeric([MyField]) then [MyField] = "OR" & [MyField]
?
I haven't been able to get that to work...
TIA
Steve
"OR#####" where there is always the characters, "OR" and some number of
digits afterward. What I'm trying to do is to edit the field as the
user is leaving it so if they just typed the number the "OR" whould get
pre-pended to it. Is this something that should be done in the
BeforeUpdate section, ie,
If IsNumeric([MyField]) then [MyField] = "OR" & [MyField]
?
I haven't been able to get that to work...
TIA
Steve