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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Date Difference

I have a Two Column Date of Joining and Date of Resignation ...

Example :Date of Joining - 01/01/2012  And  Date of Resignation - 02/05/2015

so i want the Out Put how many Year Month and Day Employee works.. like .. 3 year 4 Month and 1 Day ...


Plz Tell me

23 Replies
Not applicable
Author

Header 1

Kindly check this.. i formatted a Excel File

anbu1984
Master III
Master III

Load *,Floor(Days/365) & ' Years ' & Floor(Mod(Days,365)/30) & ' Months ' & Mod(Mod(Days,365),30) & ' Days ';
Load *,Interval(DOR-DOJ,'DD') As Days;
lOAD *
FROM
ExcelDemo.xlsx
(
ooxml, embedded labels, table is Sheet1);

Not applicable
Author

Thank U So Much.....

Its Working...

Thanks Once Again For Support and Time ....

anbu1984
Master III
Master III

If your queries are answered, close this post marking helpful/correct ans