Hi,Hopefully a simple issue:Making the division (or using a percent function) A = B/C such as A,B,C are "double" typed for some reason the result is rounded to the next integer.Iif(B=0, 0, (A*100)/B)orIif(B=0, 0, Percent(A,B)*100 )Example: B = 2C = 3Result A= 67.00Expected A= 66.66Any idea ?Adobe Ca...