I put a > in the input mask for a field, but when I run the report the data shows up as it is typed upper or lowercase. What do I put in the input mask to make the data uppercase to show not only in the datasheet and form but also in the report?
It's funny you ask that. My textbook I'm working with in Access has a solution just for that. It requires a module so I'm not sure if that's what you want. Anyway here is the code for the module.
Function CapAll(FValue)
CapAll = UCase(FValue)
End Function
You can either store the data as upper case or you can just set them in the format of whatever data you want displayed that way. And to do it all it takes is to put this:
>
in the format of the text box for the report.
If you want it stored as all caps, then instead of using an extra function, just put this in the control's BEFORE UPDATE event: