Aug 22, 2020 10:11 PM
I’m not great with Scripting, but I can struggle my way through sometimes.
I’m trying to get the day of the week from a Date field type.
Any suggestions on how to accomplish this?
Thanks!
Aug 23, 2020 08:54 PM
https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_date_weekday
^ Typical example of how to use .getDay() in javascript.
.getDay()
So you would be doing something like this:
const dateValue = new Date(record.getCellValue("Date field")) const days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] const dayOfWeek = days[dateValue.getDay()]