I'm using Google Forms to submit data into a Google Sheet. When I log the cell value which contains the date, it returns "Thu Apr 22 03:00:00 GMT-04:00 2021"
I want the date to look like "April 22, 2021"
Any advice on how to accomplish this? Any hints would be appreciated.
Thank you.
Utilties.formatDate(new Date('Thu Apr 22 03:00:00 GMT-04:00 2021'),Session.getScriptTimezone(), "MMM dd, yyyy");or you could probably format the cell with the spreadsheet formatting tools. - Cooper