When displaying a list on a report, what's the easiest way to have them formatted with bullets?
It's quite easy in Word, but I can't figure it out in Access and it's driving me insane.
Thanks very much for any assistance.
Using Arial font style, for example, the bullet is chr(149).
What I have done is create an AutoCorrect keystroke combination and
have that correct to the bullet •.
I use 2 vertical bar (||) keystrokes.
You can use any combination convenient for yourself.
In the Form and Table, it will appear as a single wide vertical bar,
however in the report, it will show as a bullet.
The actual size of the bullet will be in proportion to the font size
of that control.
Or you could use an unbound control.
Set it's control source to:
=chr(149) & " " & [YourField]
or...
If you wanted larger bullets than the text font size would use, use a
separate control:
= chr(149)
Set it's Font size as large as you wish.
Then alongside, use your normal control [TextField].