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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
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