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

Selection not supported.

Dear all,

Sum(Aggr(

If(Status = 'ACTIVE,

    NetWorkDays(Date(Date#(LON_DATE)), Today()),

    NetWorkDays(Date(Date#(LON_DATE)), Date(Date#(SET_DATE))))

, Dim1, Dim2))


This expression has been used in my application.


Results of the same does not changed according to the selection made in the selection box (Month and Year).


Rgds,

Priyantha.

1 Solution

Accepted Solutions
avinashelite

Does the Month and Year are in the Aggr condition

View solution in original post

3 Replies
avinashelite

Does the Month and Year are in the Aggr condition

Anonymous
Not applicable
Author

Hi Priyantha,

If I am not wrong  you are missing measure in the expression

Correct me if I am wrong

If(Status = 'ACTIVE,

    NetWorkDays(Date(Date#(LON_DATE)), Today()),

    NetWorkDays(Date(Date#(LON_DATE)), Date(Date#(SET_DATE))))

'MEASURE', Dim1, Dim2))


Not applicable
Author

THX.