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: 
Anonymous
Not applicable

String into Date format

Hi all,

I got stuck in date formats.

My Input is "April"(from Apr to Mar) which is  string and Year 2017(2018) as another string

My output should look like

01/04/2017(in date format)

I have already tried of timestamp# and Date#

Can anybody help me to get out from this?

Thanks in advance

1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Full month name is parsed using 'MMMM'. So a string like : 'April 2017' can be parsed like:

Date(Date#('April 2017' , 'MMMM YYYY')) as Date

View solution in original post

2 Replies
tresB
Champion III
Champion III

Full month name is parsed using 'MMMM'. So a string like : 'April 2017' can be parsed like:

Date(Date#('April 2017' , 'MMMM YYYY')) as Date

Anonymous
Not applicable
Author

Hi Tresesco,

Its Working.Thanks for the fast reply