0
0
Google Sheetsspreadsheet~5 mins

WEEKDAY and WORKDAY in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
A1
B7
C0
DSunday is not counted
Which function would you use to find the date 10 working days after today?
ATODAY()+10
BWEEKDAY(TODAY()+10)
CWORKDAY(TODAY(), 10)
DWORKDAY(TODAY(), -10)
How do you tell WEEKDAY to count Monday as 1?
AWEEKDAY(date, 1)
BWEEKDAY(date)
CWEEKDAY(date, 3)
DWEEKDAY(date, 2)
What days does WORKDAY skip by default?
AFriday and Saturday
BSaturday and Sunday
CSunday only
DNo days are skipped by default
How can you make WORKDAY skip holidays?
AAdd holidays as the third argument
BUse WEEKDAY with holidays
CWORKDAY automatically skips holidays
DYou cannot skip holidays with WORKDAY
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.