i have a label that show a calculation in it "=Sum([txtSubTotal])"
i would like to display some text in front of the total amount, how can i do this
i have a label that show a calculation in it "=Sum([txtSubTotal])"
i would like to display some text in front of the total amount, how can i do this
Something like:
= "My text " & Sum([txtSubTotal])
If this helped, please click the star at the bottom left of this posting and add to my reputation. Many thanks.
Bob Fitzpatrick
Try:
= "£" & [txtTotal&Text] & [txtSelectedDate]
BTY: Using "&" in the name of a control is likely to cause you problems.
If this helped, please click the star at the bottom left of this posting and add to my reputation. Many thanks.
Bob Fitzpatrick