Do I understand correctly that the Player Fees Due has the correct numbers, but you only want to show the negative numbers? I am rereading your first posting in the thread and you are talking about column 1, 2 and 3, but in the calculation samples there are only 2 numbers. That makes it kind of hard to understand.
If I look at the column Due to players, I don’t understand that either. Look at the first line - where does 2361.25 come from?
I am not sure of the calculations you have made, so I will just assume they are correct according to your needs. However, I’ve shown how one column can show only positive values, and another column show only positive ones The formula used helps reduce calculations as it only needs to calculate once:
Withname(
[Player Fees]-[Orders Revenue], Amount
If(Amount<0,Amount,'')
)
This formula does the maths, and names the result ‘Amount’. Then it checks if ‘Amount’ is less than zero, if so show it, otherwise make it empty.
The advantage of this is that the maths only happens once.