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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to hide specific values in a stacked bar chart?

Hello Community,

i have created a stacked bar chart where i have different "status" for different "days".

status_test-pic.PNG

I dont want to show if a day has only the status "start" like the 30.04.2016 in the picture.

How can i hide this?

Tank you really much for your help!

Greetings,

Florian

21 Replies
tomasz_tru
Specialist
Specialist

but it won't hide the day.

Tomasz

agigliotti

i forgot to say to uncheck "Include zero values" option.

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it
Not applicable
Author

bu i want to keep the "start" status from the other fields, if a day  has more than 1 status

agigliotti

yes that's why I wrote as below:

count( distinct Status) = 1 and Status = 'Start'


it means only Days with only one status equal to 'Start' will be hide.

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it
Not applicable
Author

yes, but the status "start" is complete missing in the other dates too now.

agigliotti

maybe I didn't understand your data model because It should works.

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it
tomasz_tru
Specialist
Specialist

'count( distinct Status)' in condition will be calculated for every dimension value - so it would be 1 for every day - that's why 'Start' disappeared.

agigliotti

ok then try with:

count( TOTAL <Day> distinct Status) = 1 and Status = 'Start'

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it
bharani8
Creator III
Creator III

This is working!! Cool

bharani8
Creator III
Creator III

=if( count( TOTAL <Day> distinct Status) = 1 and Status = 'Start', 0, count( Status ) )