Stupid question about Fmt() (AREV Specific)
At 26 AUG 2005 03:14:54PM Matt Sorrell wrote:
Okay, so I'm trying to generate a report, and I'm using Fmt() to make sure my columns line up.
I having one difficulty in that I'm trying to include the % symbol in one of my column headers (Contrib %, as in "Contribution Percentage").
The % character is getting dropped. I first had it as Fmt("Contrib %", "L#11"), then changed it to Fmt("Contrib %%", "L#11") and then changed it to Fmt("Contrib " : Char(25), "L#11"). Neither one of these seems to be working.
Can I not include the % symbol? I am pretty sure I've done this before . . . . .
msorrel@greyhound.com
At 26 AUG 2005 04:38PM Matt Sorrell wrote:
Okay, so I just dropped Fmt() altogether for that column header and everything works fine now.
msorrel@greyhound.com
At 30 AUG 2005 09:24AM Hippo wrote:
Suppose Contrib is a variable, not the headding text …
Fmt(Contrib, "L#10"):"%"
should work fine