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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
echildm
Contributor II
Contributor II

Transform dates

Hello everybody i have the following problem, i exported monetary indicators data from different sources and i have 3 different formats on the date field:

Format 1:  MMM/YY  Example: Jul/21

Format 2: DD/MMM/YY  Example: 01/Jul/21

Format 3 (Favorite one): DD/MM/YY  Goal: 01/07/21

¿How can I transform the formats 1 and 2  to the format 3 (DD/MM/YY)?

In the case of the format 1 i would like the day to be the first of each month, for example transform Jul/21 to 01/07/21.

Thanks in advance.

 

 

Labels (1)
1 Solution

Accepted Solutions
BrunPierre
Partner - Master II
Partner - Master II

Format 1: Date(Date#(DateField,'MMM/YY'),'DD/MM/YY')
Format 2: Date(Date#(DateField,'DD/MMM/YY'),'DD/MM/YY')

View solution in original post

2 Replies
BrunPierre
Partner - Master II
Partner - Master II

Format 1: Date(Date#(DateField,'MMM/YY'),'DD/MM/YY')
Format 2: Date(Date#(DateField,'DD/MMM/YY'),'DD/MM/YY')

echildm
Contributor II
Contributor II
Author

It worked perfectly, thx for the help.