Force data entry at Form to be all UPPER case

Hi Expert

Is anyway like expression or feature in the appsheet to force data entry all Capital Letter and not Small letter. Example below is the Key value and user keep enter lower case. 115g-098-R1-009 --- how do I systematically force user to make sure he enter 115G-098-R1-009

desmond_lee_0-1686877829946.png

 

Solved Solved
0 5 693
2 ACCEPTED SOLUTIONS

Please try in the valid_if of the [SAP NUMBER] column

FIND(UPPER([_THIS]),[_THIS])=1 

View solution in original post

FIND() is the only case-sensitive expression in appsheet.

valid_if = FIND( [_THIS] , UPPER( [_THIS] ) ) = 1

View solution in original post

5 REPLIES 5

Created Behaviour and Bots likes this. 

Screenshot_20230616-065305-419.png

Screenshot_20230616-065013.png

 

 I have just done that it does not work because that column is a KEY VALUE and it show an error cannot modified

Please try in the valid_if of the [SAP NUMBER] column

FIND(UPPER([_THIS]),[_THIS])=1 

FIND() is the only case-sensitive expression in appsheet.

valid_if = FIND( [_THIS] , UPPER( [_THIS] ) ) = 1

Wow I need to check 900 rows but with this expression it all solved. Thank soooooooooo much

Top Labels in this Space