If
amount1 = 3,430,035.43 and
amount2 = 9,430,665.43
and I want to find the difference between these two numbers, why does the following code give me a 'Bad arithmetic conversion' error?
If Compare(amount1,amount2) /= 0 Then do
Difference = amount2 - amount1
say Difference
end
Difference = amount2 - amount1
say Difference
end
Thanks in advance!