Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
I have a Month field containing values Jan to Dec.
How can I create a dummy date field using the Month field I already have?
This should work:
=date(date#(2015 & "MonthField" & 01, 'YYYYMMMDD'))
Could you attach the sample data.
Hi,
Use makeDate()
makeDate(2015,MonthField,1)
Regards
Hi,
Like this:
Thanks a lot!
MakeDate(num(financialyear),num(wildmatch([month],'Jan*','Feb*','Mar*','Apr*','May*','Jun*','Jul*','Aug*','Sep*','Oct*','Nov*','Dec*')),1)
Try the above logic...