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 set Filter default values in QlikSense

Hi,

I have a Status Filter in that values are - "Safety,Critical,High,Medium,Low"

Default i should show "Safety,Critical,Hot", other wise i should show 5 values.

any one can help with the expr...

Sub2u444

13 Replies
sunny_talwar

Subba would you be able to elaborate what is default means? How is default different from otherwise here?

Not applicable
Author

Sorry for my explanation..

with out any selection, it should show-Safety,Critical,High

other wise - Safety,Critical,High,Medium,Low

sunny_talwar

May be this:

If(GetSelectedCount(Status) = 0, ExpressionWithSetAnalysis = {<Status = {'Safety', 'Critical', 'High'}>}, ExpressionWithoutAnySetAnalysis)

Not applicable
Author

=If(GetSelectedCount[Status]=0,

[Status]={<[Status]={'Safety','Critical','High'}>},[Status])

is it right?

sunny_talwar

No it is not.

1) Are you doing this as a dimension or expression?

2) if it is an expression, what is your current expression?

3) if it is dimension, why don't you use an expression to control the dimension?

Not applicable
Author

1.Dimension.

I am new of this, can you help...

sunny_talwar

Can you use expression instead?

mgranillo
Specialist
Specialist

Subba,

Have you tried opening the app in Qlik Sense Desktop, applying your selections, saving the app, then importing it to your server? 

This works for me. 

Mike

Not applicable
Author

Hi Michael,

sorry to late response. can you help, how to implement..

Sub2u444