Hello all,
I need to sum just the negative amounts of each line.
For example:
| Client | Sum1 | Sum2 | Sum3 | Sum4 |
| X | 10 | -10 | 20 | -5 |
| Y | -30 | 0 | -20 | 40 |
| Z | -20 | -20 | 40 | -20 |
I need to get the results that X=-15, Y=-50, Z=-60.
Do you have any suggestions of how should i do it?
Thank you in advance.