Calculation not outputting overall value
Hi, I have variables that represent numerical values and when i try outputting a product or quotient of these values, all i recieve is the values themselves. I may be a little vague but an example should help clear this up.
For example:
A=4
B=2
C=3
D=A*B/C
<cfoutput>#D#</cfoutput>
and I will get 4*2/3
not 2.6667
How can i get it to display 2.6667
