Recall & Review
beginner
What does the WEEKDAY function do in Google Sheets?
The WEEKDAY function returns a number representing the day of the week for a given date. For example, Sunday can be 1, Monday 2, and so on, depending on the chosen return type.
Click to reveal answer
beginner
How do you use the WORKDAY function in Google Sheets?
WORKDAY calculates a date that is a certain number of working days away from a start date, skipping weekends and optionally holidays.
Click to reveal answer
beginner
What is the default weekend in the WORKDAY function?
By default, WORKDAY treats Saturday and Sunday as weekends and does not count them as working days.
Click to reveal answer
intermediate
How can you make WEEKDAY start counting from Monday as 1 instead of Sunday?
Use WEEKDAY(date, 2). This makes Monday = 1, Tuesday = 2, ..., Sunday = 7.
Click to reveal answer
intermediate
How do you exclude holidays in the WORKDAY function?
Add a range or array of holiday dates as the third argument in WORKDAY. These dates will be skipped as non-working days.
Click to reveal answer
What number does WEEKDAY return for Sunday by default?
✗ Incorrect
By default, WEEKDAY returns 1 for Sunday.
Which function would you use to find the date 10 working days after today?
✗ Incorrect
WORKDAY(TODAY(), 10) returns the date 10 working days after today, skipping weekends.
How do you tell WEEKDAY to count Monday as 1?
✗ Incorrect
Using WEEKDAY(date, 2) makes Monday = 1.
What days does WORKDAY skip by default?
✗ Incorrect
WORKDAY skips Saturday and Sunday by default.
How can you make WORKDAY skip holidays?
✗ Incorrect
You add a list or range of holiday dates as the third argument to WORKDAY to skip them.
Explain how to use the WEEKDAY function to find the day number of a date, and how to change the start day of the week.
Think about the two arguments WEEKDAY takes and what they mean.
You got /4 concepts.
Describe how the WORKDAY function calculates dates and how you can exclude weekends and holidays.
Consider how WORKDAY helps with business day calculations.
You got /5 concepts.