Force upper case in memo fields

S

SusanV

You don't - but you can use the After Update or Lost Focus event to change
the text to upper:
me.memofield = UCase(Me.memofield)
 
Top