July 13, 200619 yr I have a runtime (Dev 6) which requires lots of user input. I'm trying to find an easy way to validate each field for proper text useage (not all UPPER or lower). The following works but it's going to take forever to do for each field. Is there a better way? If(first_name = "", "", not Exact(first_name, Upper(first_name)) and not Exact(first_name, Lower(first_name))) Thanks for any thoughts!
July 13, 200619 yr You might try just running the change on the field regardless. Then you aren't slowing things down with the test. I don't know whether you have the Proper function in 6 (I imagine you do), but you might want that instead.
Create an account or sign in to comment