Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
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

1 Solution

Accepted Solutions
agigliotti
Partner - Champion
Partner - Champion

ok then try with:

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

View solution in original post

21 Replies
bharani8
Creator III
Creator III

Try this..

Count({<Day -= {'MENTION DATE'}>}Status)

bharani8
Creator III
Creator III

I think i got the question wrong.. let me try other way

tomasz_tru
Specialist
Specialist

change your measure to:

Count({$<Status={"start"}>}Status)

tomasz_tru
Specialist
Specialist

Skip it - I misunderstood your question, and can't delete the post.

Tomasz

chinnuchinni
Creator III
Creator III

You can once try with this

count({<Status-={'Start'}>}Status)

bharani8
Creator III
Creator III

May it works.. not sure though..

=if(Status <> 'Start',count(Status))

Please attach ur qvw file

agigliotti
Partner - Champion
Partner - Champion

try this expression:

=if( count( distinct Status) = 1 and Status = 'Start', 0, count( Status ) )

Not applicable
Author

I have attached the file.

Not applicable
Author

now is every field wich contains "start" missing.