G Guest Feb 13, 2007 #1 On my report, I need to enclose my total currency data in quotation marks (i.e. "$1,000.00") without losing my formatting.
On my report, I need to enclose my total currency data in quotation marks (i.e. "$1,000.00") without losing my formatting.
F fredg Feb 13, 2007 #2 On my report, I need to enclose my total currency data in quotation marks (i.e. "$1,000.00") without losing my formatting. Click to expand... Use an unbound text control. = """" & Format([ControlName],"Currency") & """"
On my report, I need to enclose my total currency data in quotation marks (i.e. "$1,000.00") without losing my formatting. Click to expand... Use an unbound text control. = """" & Format([ControlName],"Currency") & """"