Hello everyone!
I'm working with big floating point numbers as 369814.705617128, for example (see attached file below).

I need to store the subtraction [X] - [Y] (both are Double type) with two decimal places in the [Z] field (Fixed Decimal type with 19.2).
I've made three tests to check the result, as it follows:

1) [X], [Y] and [Z] as Double type.

2) [X] and [Y] as Double Type and [Z] as Fixed Decimal with 19.2

3) [X] and [Y] converted to Fixed Decimal with 19.2 and [Z] as Fixed Decimal with 19.2

So, only on the first case I'm getting the CHECK field with True.
Once I need to store [Z] with two decimal places, how can I properly get [Z] with the exact value from the subtraction [X] - [Y]?
Thanks in advance!