Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to get aging per day?

Hi,

May I ask what function or syntax that be used in getting the aging of an invoice. Can someone give me an example?

Thank you

- Ahyel

14 Replies
SunilChauhan
Champion
Champion

as date#(Today(),'DD.MM.YYYY') will give you incorrect format so

try this


Date(Today(),'DD.MM.YYYY') -Date([Request Date],'DD.MM.YYYY') as Ageing

hope this helps

Sunil Chauhan
Not applicable
Author

Hi,

Can you help me on this?

How can I get the duration of processing from two dates?

From PR Approved date to PO creation date including the weekend?

Thanks a lot!!

Regards,

Ahyel

SunilChauhan
Champion
Champion

[PR Approve Date]- [PO Creation date]  as fieldname

or

Interval(PR Aprove date],[Po creation date],'DD') as Field

use expressions provided directly in Expression

hope this make sense


Sunil Chauhan
Not applicable
Author

Hi Jagan,

can you help me on this?

How can I get the duration of processing from two dates?

From PR Approved date to PO creation date including the weekend?

Thanks a lot!!

Regards,

Ahyel

jagan
Luminary Alumni
Luminary Alumni

Hi,

Try like this

LOAD

*,

Interval([PR Approved date] - [PO creation date], 'MM/DD/YYYY hh:mm:ss') AS Duration

FROM DataSource;

Regards,

Jagan.