Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
bhavvibudagam
Creator II
Creator II

How to remove Null Bar from Bar chart

Hi Experts,

Can anyone please help me on this.

In the below bar chart I need to remove the [Null] bar from the Partner Dimension.

I have to remove only from this chart in UI not from the complete app in the backend.

Please help me on this.

Null Bar.png

Thanks in Advance.

1 Solution

Accepted Solutions
Anonymous
Not applicable

Use as a dimension

=if([Partner Dimension] = '[Null]', null(), [Partner Dimension])


and then uncheck the box "Show null values" on the dimension

View solution in original post

2 Replies
Anonymous
Not applicable

Use as a dimension

=if([Partner Dimension] = '[Null]', null(), [Partner Dimension])


and then uncheck the box "Show null values" on the dimension

devarasu07
Master II
Master II

Hi,

try below methods,

Method 1) Try to suppress null value from your dimension field  "Partner"

Method 2) try to exclude null using set analysis expression

let say you have measure as Sales then

sum( {$<Sales={">0"}>}Sales)

or

sum( {$<Partner={"=Len(trim(Partner))>0"}>}Sales)


Thanks,

Deva