Page 1 of 1

Math Variables

Posted: Thu Mar 30, 2017 5:19 pm
by aaaplace
I would like to calculate the tourist tax on the invoice in this way:

[NUMNIGHT]*[NUMADULT]* euro 0,95. Is it possible?

Kind Regards,

Nicola

Re: Math Variables

Posted: Fri Mar 31, 2017 5:45 am
by markkinchin
The following should work. Note that numbers must use . for decimal points, not commas, [*.2] will multiply with 2 digit decimal precision, [*] will show all decimal places.

[NUMNIGHT] [*] [NUMADULT] [*.2] 0.95

Re: Math Variables

Posted: Fri Mar 31, 2017 7:39 am
by aaaplace
It worked, thank you.