Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How To Hide Negative Values

Dear All,

I have used 2 tables for the calculation ( suppose table A & table B) & used the expression A-B, and make a chart (pivot table)

i just want to supress negative values in the output chart.

Thanks in advance

1 Solution

Accepted Solutions
Gysbert_Wassenaar

You can try adding an if statement around your expression: if(A-B>=0, A-B). If that doesn't do what you need, please post example data and an example of what the result should look like.


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar

You can try adding an if statement around your expression: if(A-B>=0, A-B). If that doesn't do what you need, please post example data and an example of what the result should look like.


talk is cheap, supply exceeds demand
Not applicable
Author

Thanks Gysbert...

wiz_nerd
Creator
Creator

Thanks for the solution 🙂 It works perfectly.