Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
praveenkumar_s
Creator II
Creator II

Adding Date

I have one field as Date of joining..Now i want to add that date with current date to calculate Experience..how do i do that..let me know anybody...thanks..

1 Reply
Miguel_Angel_Baeyens

Praveen,

If I understand you right, this should work in the script:

LOAD *

, Today() AS CurrentDate

, JoinDate - Today() AS DaysInPosition

FROM File.qvd (qvd);

Miguel