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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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