Jul 07, 2019 06:58 PM
I have tried wrapping both fields in VALUE(field), ABS(field), etc.
How do I get this to behave?
What is the reasoning behind this?
Solved! Go to Solution.
Jul 07, 2019 08:47 PM
Hard to tell from what you show here.
There is a known Airtable bug having to do with implicit conversions during comparisons that might be raising its ugly head here.
Alternatively, depending on how the field that is referenced by {[moneybag]Received}
is derived — or, for that matter, the original source for {[infinity]Received}
— you might be comparing values with a different number of significant digits. Try wrapping both in ROUND({Field},2)
to see if it helps. You could also try changing the formatting for both fields to decimal with 3 or more significant digits to see if the values are, indeed, the same.
Jul 07, 2019 08:47 PM
Hard to tell from what you show here.
There is a known Airtable bug having to do with implicit conversions during comparisons that might be raising its ugly head here.
Alternatively, depending on how the field that is referenced by {[moneybag]Received}
is derived — or, for that matter, the original source for {[infinity]Received}
— you might be comparing values with a different number of significant digits. Try wrapping both in ROUND({Field},2)
to see if it helps. You could also try changing the formatting for both fields to decimal with 3 or more significant digits to see if the values are, indeed, the same.
Jul 07, 2019 10:02 PM
W_Vann_Hall Strikes again! Perfect solution!!. :slightly_smiling_face:
May 25, 2023 03:18 PM
This has been perplexing me for ages—thank you!