Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have [Calendar Year / Month] Field available in QVD and want to do either:
1. wish to combine it with Master Calendar QVD so that I can get CalendarDate "OR"
2. directly create / make date out of [Calendar Year / Month] Field
Thanks in advance.
Pradnya Pampatwar.
No. I have tried that but its not working.
Hi,
Try this MakeDate(Year, Month, 1) as Date
Regards,
Joshua.
No. I have tried that but its not working.
Hi,
If [Calendar Year / Month] is a single field you can get year and month using subfield function and then you can makedate.
Try this
MakeDate(SUBFIELD( [Calendar Year / Month],'/',1), SUBFIELD( [Calendar Year / Month],'/',2), 1) as Date
Regards,
Joshua.
Try Like this
MakeDate(Year([Calendar Year / Month]),Month([Calendar Year / Month]),1)
Hi Thanks for the reply. I tried but its coming like 1/1/2018 2/1/2018 till 12/1/2018 not getting all the Days like 1 to 30.