To convert values entered in a combobox to uppercase, this was the code I used:
Me!Code = UCase(Me!Code)
The desired result was implemented in the control source (field in underlying table), but the row source of the combobox of another form that is this field in the underlying table was not converted to uppercase.
How do I solve this?
Me!Code = UCase(Me!Code)
The desired result was implemented in the control source (field in underlying table), but the row source of the combobox of another form that is this field in the underlying table was not converted to uppercase.
How do I solve this?