How to extract the day from the date. For example, if the given date is 15 August 2020, I want to know the day for that particular date i.e. Saturday. Please help me on this. Thank you.
SWITCH(
WEEKDAY(TODAY()),
1, "Sunday",
2, "Monday",
3, "Tuesday",
4, "Wednesday",
5, "Thursday",
6, "Friday",
"Saturday",
)
Thanks
Or as below
TEXT(TODAY(), โDDDDโ)
User | Count |
---|---|
14 | |
11 | |
9 | |
7 | |
4 |