0
0
Excelspreadsheet~20 mins

WEEKDAY and WORKDAY in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
WEEKDAY and WORKDAY Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Find the weekday number for a given date
You enter the date 2024-07-04 in cell A1. Which formula correctly returns the weekday number where Sunday = 1 and Saturday = 7?
A=WEEKDAY(A1,2)
B=WEEKDAY(A1,1)
C=WEEKDAY(A1,3)
D=WEEKDAY(A1,11)
Attempts:
2 left
💡 Hint
Remember, the second argument in WEEKDAY controls which day is counted as 1.
📊 Formula Result
intermediate
2:00remaining
Calculate the date 10 working days after a given date
If cell A1 contains the date 2024-06-20, which formula returns the date 10 working days later, excluding weekends?
A=WORKDAY(A1,10)
B=WORKDAY(A1+10,0)
C=A1+10
D=WORKDAY(A1,10, {"2024-06-25"})
Attempts:
2 left
💡 Hint
WORKDAY adds working days excluding weekends by default.
Function Choice
advanced
2:00remaining
Choose the formula that returns the weekday name for a date
You want to display the weekday name (like Monday, Tuesday) for the date in cell A1. Which formula will do this correctly?
A=TEXT(A1, "dddd")
B=WEEKDAY(A1)
C=WORKDAY(A1,1)
D=DAY(A1)
Attempts:
2 left
💡 Hint
TEXT function can format dates as text strings.
🎯 Scenario
advanced
2:00remaining
Calculate the next working day excluding holidays
You have a date in A1 (2024-12-20) and a list of holidays in range B1:B3 (2024-12-25, 2024-12-26, 2025-01-01). Which formula returns the next working day after A1, skipping weekends and these holidays?
A=WORKDAY.INTL(A1,1,"0000011",B1:B3)
B=WORKDAY(A1,1)
C=WORKDAY(A1,1,B1:B3)
D=A1+1
Attempts:
2 left
💡 Hint
WORKDAY can take holidays as a third argument to exclude them.
data_analysis
expert
3:00remaining
Count how many weekdays fall between two dates excluding holidays
You want to count how many working days (Monday to Friday) are between 2024-06-01 (in A1) and 2024-06-30 (in B1), excluding holidays listed in C1:C3. Which formula gives the correct count?
A=COUNTIF(A1:B1,"<>Saturday")-COUNTIF(A1:B1,"<>Sunday")
B=WEEKDAY(B1)-WEEKDAY(A1)-COUNT(C1:C3)
C=WORKDAY(B1-A1,0,C1:C3)
D=NETWORKDAYS(A1,B1,C1:C3)
Attempts:
2 left
💡 Hint
NETWORKDAYS counts working days between two dates excluding holidays.