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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
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.