Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi I have a Field in my data that is populated by Jan 18, as the Month and Year.
Is there any way to convert it into 'yyyy MM dd' ?
I have looked at inline tables but there are to many variables.
Many Thanks
Hello, maybe this in the script:
Date(Date#(YourDateField, 'MMM YYYY'), 'YYYY.MM.DD') AS YourDateField
Try Date(Date#(YourDateField, 'MMM YYYY'), 'YYYY-MM-DD')
Thanks Ivan, that worked