I am on version 2018.2
I have a simple formula where I am dividing 1 number by 100 and comparing it to another number. It works most of the time, but sometimes I get answers I don't expect. I suspect is has to do with the datatype precision, but It doesn't appear I can use fixed decimal fields in the formula. I've attached an example below.
Let's say I have Field one and Field2 with the following values
.074 7.4
.094 9.4
and the formula
If [Field1] = [Field2]/100
then 1
else 0
endIF
I would expect both to be one, but the first row returns 0.
How do I get around this?