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

NetworkDays

Hi,

I have attached the scaled down application.

I need to make pivot chart with dimension ISSUE_ASSIGNED_TO, KEY and expression which gives no of days between CREATED and DUE_DATE with considering holiday and weekends.

I tried networkdays with concat but results not coming.

Reg,

Shubhu

1 Reply
Anonymous
Not applicable
Author

You can use a Calculated Dimension for this.
Like:

=IF((Holiday_Date)<>(CREATED) or (Holiday_Date)<>(CREATED) ,KEY )

But you have to make sure fields have the same format, because now they don't.

You have to use something like:

date(CREATED, 'DD-MM-YYYY')
date(FLOOR(CREATED))

Hope this helps.