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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
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.

Labels (1)
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.