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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register 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.