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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
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.