"&" in my label

sphere

Registered User.
Local time
Today, 10:28
Joined
May 21, 2001
Messages
19
hi!
anyone know why the symbol (&) isn't coming out on my report label??
=)
 
Hi Sphere

The ampersand - & - is used in VBA to join strings and coding together. If you want it to appear in a label you need to put it twice!

Sales && Customers

in the Caption property of your label will give you:

Sales & Customers

HTH

Rich Gorvin
 
perfect!
thanks rich
=)
 
Creates another problem

Ok... if you use two ampersands "&&" in a label, and then export the report to Word, you get BOTH ampersands showing in the exported .rtf file !!

Now what!! HAHA I got you now!! (Actually, I need to resolve this. All help will be appreciated!)

Tom
 
Rich@ITTC said:
Hi Sphere

The ampersand - & - is used in VBA to join strings and coding together. If you want it to appear in a label you need to put it twice!


mmm.....learn't something new today... :)
 

Users who are viewing this thread

Back
Top Bottom