Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Make negative zero as positive zero in pivot table

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

Capture.PNG

1 Solution

Accepted Solutions
sunny_talwar

May be something like this:

fabs(YourExpression4Difference)

or

If(YourExpression4Difference >= -1 and YourExpression4Difference <= 0, 0, YourExpression4Difference)

View solution in original post

4 Replies
sunny_talwar

May be something like this:

fabs(YourExpression4Difference)

or

If(YourExpression4Difference >= -1 and YourExpression4Difference <= 0, 0, YourExpression4Difference)

marcus_sommer

You need to use rounding-functions like round(YourExpressionForColumn1) - round(YourExpressionForColumn2), see also: Rounding Errors

- Marcus

Chanty4u
MVP
MVP

=dual(fabs(sum(urexp))

or chk below

Re: Negative values in chart

Not applicable
Author

Thanks Sunny!!

It did work.