Force/Convert to Upper Case

L

LyLy

Good Afternoon,

I have a form in InfoPath and would like to force a couple of fields to
upper case regardless of what is entered. Doesn't have to be as user types
data in, but can be switched after user moved to next field.

Thanks,
LyLy
 
S

Swathi

Hi,
Following function will work when user moved to next field.
Set the default value of the textbox to the formula
translate(., "abc ... z", "ABC ... Z")
 
L

LyLy

Thanks, that worked!

Swathi said:
Hi,
Following function will work when user moved to next field.
Set the default value of the textbox to the formula
translate(., "abc ... z", "ABC ... Z")
 
Top