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

Filter a table with a calculated dimension

Dear Friends,

Why this line does not work:

a calculated dimension: =if(DateTask= $(=aggr(max(DateTask),WorkOrder)),WorkOrderTask, null())

Thanks in advance,

Javier Pozo





1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hello Javier,

You don't need to use $() in a condition like that, so try

=if(DateTask = aggr(max(DateTask),WorkOrder), WorkOrderTask, null())


Hope that helps

View solution in original post

2 Replies
Miguel_Angel_Baeyens

Hello Javier,

You don't need to use $() in a condition like that, so try

=if(DateTask = aggr(max(DateTask),WorkOrder), WorkOrderTask, null())


Hope that helps

Not applicable
Author

Angel,

You are right it works.

Thanks again

Javier Pozo