Hi Community,
(Please see screen shot for data structure understanding)
I would like to change the [Value] column to absolute values (as some of the numbers are negative) based on the rules below:
I hope this makes sense?
Solved! Go to Solution.
Hello @gurpreet-singh ,
For that you would need to use the multi row formula twice:
First one could be something like:
IF [F2] = "Salaire Brut" THEN [Row-1:New_column]+1 ELSE [Row-1:New_column] ENDIF
And the second would be:
IF [F2] != "Salaire Brut" AND [New_column] > 0 THEN ABS([Value]) ELSE [Value] ENDIF
Cheers
thank you @afv2688