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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to make a 0 value in to a dash "-"

3 Replies
sunny_talwar

Within a chart you can replace null to be shown as '-'. PFA

Clever_Anjos
Employee
Employee

Use and if to bring null when it´s 0, something like

if(sum(MyValue)>0,sum(MyValue),null())

Not applicable
Author

Thankyou, it worked.