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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Peony
Creator III
Creator III

Connection between two tables with different date format

Hi All

Please, could anyone gove an advise to finde the silution for the task below.

I have a two tables with different date type MM/DD/YYYY and MMMYYYY.
I need to create common table with correspondence between these tables data.
I suppose I need to convert TargetDate to MM/DD/YYYY . But I dont uderstent how to do it .

Labels (1)
1 Solution

Accepted Solutions
Vegar
MVP
MVP

You can convert TargetDate to your desired format like this.

Date(date#(TargetDate,'MMMYYYY'),'MM/DD/YYYY')

View solution in original post

2 Replies
Vegar
MVP
MVP

You can convert TargetDate to your desired format like this.

Date(date#(TargetDate,'MMMYYYY'),'MM/DD/YYYY')

Peony
Creator III
Creator III
Author

Thank you!