Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE 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