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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Not to display a value in a chart

Hi All,

I have attached a sample qv applicaion. In this application i have created a chart using vendor name as dimension and month as expression. The vendor name will have list of names. In the chart it should not show the vendor name("Anand","Mark").

How can i do this in chart level. Please provide a solution.

Regards,

Gerard

1 Solution

Accepted Solutions
deepakk
Partner - Specialist III
Partner - Specialist III

Hi,

PLease find the solution in the attachment.

Deepak

View solution in original post

3 Replies
deepakk
Partner - Specialist III
Partner - Specialist III

Hi,

PLease find the solution in the attachment.

Deepak

Not applicable
Author

Hi Deepak,

Thanks for the solution. Its working fine. Instead of giving it in the expression, is there any way to give it in dimension. Since if we pull vendor name as a list box and we select "Anand" " Mark", the graph will show the vendor name with months 0. Is there any way to remove the name from the chart.

Regards,

Gerard

deepakk
Partner - Specialist III
Partner - Specialist III

HI gerard,

You mean to say you don't want to load that data. If that the case then you have to filter at script.

Load * from table where VendorName <> 'Anand' or VendorName <> 'Mark'

if you wnat you can also filter at the dimension of a chart,

Go to Dimension --> Add Caluclated  DImension -->  If (VendorName <> 'Anand' or VendorName <> 'Mark',VendorName)

Below you will find a check  box for suppress nulll value. Enable it.

Deepak