Calculating Percentage from Integer fields
We are attempting to calculate a percentage from values housed in Integer fields. The formula we have tried is ([<integer1>]/[<integer2>])*100. The result we receive is always 0% when Integer 1 is less than Integer 2. The result is always 100% when Integer 1 is equal to or greater than Integer 2. We would have expected if Integer 1 = 50 and Integer 2 = 100 to get a result of 50%.
Any ideas on why the results are the way they are? Also, is there a conversion or something needed to make the calculation work correctly?
Thanks.