Kerryn wrote:
[Quoted Text] >I have a text box in a report in access that displays a size 10 1/2 (Ten and >a half). I want to display the half as the "half symbol" to save space on a >very tight label. Does any one know how to do this please. I am using MS >Access 2002 Professional on a WinXp Operating System.
Choose a font that includes that character (e.g. Arial). Then, you can use Chr(191) in a text box expression: ="10 " & Chr(191) Or you can type it directly into your label's Caption property by holding down the Alt key and typing 0191
-- Marsh MVP [MS Access]
|