MJG Posted May 17, 2004 Posted May 17, 2004 Is there a way to force capitalization in a field? Thanks
ernst Posted May 17, 2004 Posted May 17, 2004 Hi MJG, You could add field validation to your text field. If you want the user to enter data with 'all caps' then the calculation for the validation would be: Case(Exact(YourTextField, Upper(YourTextField)), 1 , 0 ) You could also use a calculated field, derived from the text input field. For 'all caps' the calculation would be: Upper(YourTextField) Regards, Ernst.
-Queue- Posted May 17, 2004 Posted May 17, 2004 blah blah Case is redundant blah Exact( field, Upper(field) ) boolean blah blah
Recommended Posts
This topic is 7564 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now