Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
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.