Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Greetings
Can someone help me to convert the negative zero value as positive in pivot table. I would like to highlight the cell value which is less than 0.
Please assist.
Thanks
May be something like this:
fabs(YourExpression4Difference)
or
If(YourExpression4Difference >= -1 and YourExpression4Difference <= 0, 0, YourExpression4Difference)
May be something like this:
fabs(YourExpression4Difference)
or
If(YourExpression4Difference >= -1 and YourExpression4Difference <= 0, 0, YourExpression4Difference)
You need to use rounding-functions like round(YourExpressionForColumn1) - round(YourExpressionForColumn2), see also: Rounding Errors
- Marcus
Thanks Sunny!!
It did work.