Hi
I have a Query that calculates a value SubTotal using one of two values depending on the state of a check box called Euro.
This works fine. The value is calculated correctly.
I now need to include the currency sign be it either € or
£ in front of the value generated according to the state of Euro. If Euro is True then € if not True then £
Euro is set by clicking on one of two command buttons btnEuro or btnGBP.
ViRi
I have a Query that calculates a value SubTotal using one of two values depending on the state of a check box called Euro.
Code:
SubTotal: IIf([Euro]=True,[Quantity]*([UnitPrice]*[ExchangeRate])-[Discount],[Quantity]*[UnitPrice]-[Discount])
This works fine. The value is calculated correctly.
I now need to include the currency sign be it either € or
£ in front of the value generated according to the state of Euro. If Euro is True then € if not True then £
Euro is set by clicking on one of two command buttons btnEuro or btnGBP.
ViRi