Caiman
11/01/2024, 8:27 AM{fxamount}+({taxamount}/{exchangerate})
(Sum, these fields are from the transaction lines)
{total}/{exchangerate}
(Group, this is the total-field from the transaction head)
I’ve tried wrapping them both in the ROUND()
function because i thought that would “force” the same rounding principle on both of them, didn’t work. I’ve tried using TRUNC({total}/{exchangerate}*100)/100
to just cut out the first two decimals, didn’t work.
Does anyone have any idea on how to solve this?
I have considered building a more complex formula where i check if the sum of the transaction lines differs by no more than 0.5 or something like that from the transaction total and if so use the same calculation on both columns just to make sure they are exactly the same. I know you can somehow use the SUM()
function in a formula but haven’t figured out how to make i work…