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

Announcements
Join us in Zurich on Sept 24th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
QUASAR
Contributor
Contributor

Three columns a date

I load a .txt file, in every line there is a string with day, month, year and other words; I used "(mid (@2,9,2)) AS Date" to separate day, month and year. Now I have 3 columns day,month,year(with month converted from 'Jan' to 01, 'Feb' to 02 etc.) but I need a new column with complete date (DD/MM/YYYY).

Help me.

Thank You

1 Solution

Accepted Solutions
Anil_Babu_Samineni

Can't you use them in concatenate format?

Date(Date#(Date&'/'&Month&'/'&Year, 'DD/MM/YYYY')) as Full_Date

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

2 Replies
Anil_Babu_Samineni

Can't you use them in concatenate format?

Date(Date#(Date&'/'&Month&'/'&Year, 'DD/MM/YYYY')) as Full_Date

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
QUASAR
Contributor
Contributor
Author

now it's ok, thank you