In my MS Access report, I want to display data from a related table in all caps. What is the simplest way to show related table value as uppercase MS Access report without changing the underlying table?
@TaylorTravels, in ms access, the expression builder can also help customize your report's related table values as uppercase using the upper() function, just like others mentioned earlier.
in ms access, you can also use the format function with the upper() function for more customized output, like format$(upper([related table field])), which gives more control over the display.
the latest ms access update in 2026 includes enhanced features for report customization, such as improved uppercase functions for related table values, giving users more flexibility in report design.
i've also found that using the upper() function in ms access reports is quite useful, you can simply type =upper([field name]) in the report's text box to display related table values in uppercase.