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

Convert String to Date

Hello,

I have the following Date as a String:

01/08/2016 03:00 (DD/MM/YYYY hh:mm)

What I need is to convert it to Date in order to show the month like this: August

Do you know how to do that?

Thank you!

2 Replies
trdandamudi
Master II
Master II

May be as below:

Date_Conversion.jpg

sunny_talwar

May be like this:

Date(Date#(DateField, 'DD/MM/YYYY hh:mm')) as Date,

Month(Date#(DateField, 'DD/MM/YYYY hh:mm')) as Month,

Date(MakeDate(Year(Today()), Num(Month(Date#(DateField, 'DD/MM/YYYY hh:mm'))), 1), 'MMMM') as FullMonthName