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

conditional display

I want to display al the reasons (reason_id)

where the product status is blocked.

I tried with the following expression, whitout succes..

=({<project_status={'blocked'}>}reason_id)

Any ideas how to do it correctly?

Kind regards,

Katleen

2 Replies
Not applicable
Author

Set analysis can be used only with aggregation functions like

Only({<project_status={'blocked'}>}reason_id)

Else just try If

If(project_status='blocked',reason_id)

Thanks

MK_QSL
MVP
MVP

You should have any aggr function with set analysis...i.e. max, min, sum, avg, only etc.