- How do I display the actual day name like 'Tuesday' instead of a number?
- Combine WEEKDAY with CHOOSE: =CHOOSE(WEEKDAY(B2),"Sun","Mon","Tue","Wed","Thu","Fri","Sat"). Alternatively, use TEXT(B2,"DDDD") in Excel or Google Sheets to display the full day name directly from the date.
- What's the practical difference between return_type 2 and 3?
- Both make Monday=1, but return_type=3 strictly follows ISO 8601 (Monday–Sunday = 1–7). Most users prefer return_type=2 for business applications. The difference rarely affects real-world results.
- Why does my WEEKDAY formula return an unexpected number?
- Check your return_type parameter. The default (1) makes Sunday=1 and Monday=2. If you expect Monday to be 1, explicitly use return_type=2. This is the most common source of confusion.
- Can WEEKDAY work with text dates like '2024-07-15'?
- Google Sheets usually recognizes text dates automatically, but Excel often requires DATEVALUE() first: =WEEKDAY(DATEVALUE("2024-07-15"),2). Always test your date format to confirm the function recognizes it.