Excel Practice Test

โ–ถ

The day of the week function in Excel is one of the most useful date utilities you can master, and learning it opens the door to smarter scheduling, payroll calculations, and reporting dashboards. Whether you need to know if January 1, 2026 falls on a Thursday or you want to flag weekend transactions automatically, Excel gives you several built-in tools to extract weekday information from any valid date. The two most common approaches use the WEEKDAY function and the TEXT function, and each has distinct strengths.

WEEKDAY returns a number between 1 and 7 that represents the day, while TEXT returns the actual day name like Monday or Mon. Power users often combine these with CHOOSE, SWITCH, or conditional formatting to build dynamic calendars and shift planners. Just like vlookup excel pulls data from tables, WEEKDAY pulls weekday positions from dates so you can categorize, sort, and analyze patterns over time. Both functions accept any cell that contains a date serial number.

One reason this topic matters is that Excel stores dates as sequential numbers starting from January 1, 1900, which means every date already carries weekday data underneath. You just need the right formula to surface it. If you have ever tried to schedule a recurring meeting, calculate billable hours, or count Saturdays in a quarter, you have probably touched on weekday logic. Mastering these functions saves hours of manual work and reduces the risk of human error in time-sensitive reports.

This guide walks through every weekday method step by step, starting with the simplest WEEKDAY syntax and progressing to advanced combinations that handle international week formats. You will see how to switch the starting day from Sunday to Monday, how to return full names or three-letter abbreviations, and how to nest these results inside IF statements for conditional logic. Each section includes real examples you can paste directly into your workbook and modify for your needs.

We will also cover common errors like #VALUE! and #NUM!, plus how locale settings affect day names returned by TEXT. If you work across regions, you need to know that TEXT respects the system locale, while WEEKDAY uses a numeric return type argument. This distinction matters in international spreadsheets where a Monday-first week is standard in Europe while Sunday-first dominates North American payroll software. Understanding both keeps your formulas portable.

Finally, we will look at practical applications: highlighting weekends in conditional formatting, counting business days, building drop-down day filters, and using weekday output as a key in lookup tables. By the end, you should feel confident picking the right function for any scenario. Excel rewards users who understand its date system, and the day of the week function is one of the highest-value formulas you can add to your toolkit. Let us start with the fundamentals and build from there.

Before we dive in, keep your sample workbook open with a column of test dates ranging from past to future. This lets you verify each formula returns the expected weekday and helps you catch issues like text-formatted dates that look correct but break WEEKDAY. With your test data ready, the rest of this guide becomes hands-on practice rather than abstract theory, and you will retain the techniques much longer.

Day of the Week Function by the Numbers

๐Ÿ“…
7
Possible Return Values
๐Ÿ”ข
3
Return Type Options
๐Ÿ“Š
1900
Excel Date Epoch
โฑ๏ธ
11
WEEKDAY Variants
๐ŸŒ
4
TEXT Day Codes
Try Free Day of the Week Function Excel Practice Questions

How to Use WEEKDAY Step by Step

โœ๏ธ

In an empty cell, type =WEEKDAY( and Excel will display the argument tooltip. The function needs a serial number, which can be a cell reference, a DATE function, or a date typed in quotes like "2026-05-19".

๐Ÿ”ข

After the date, add a comma and choose a return type. Use 1 for Sunday=1 through Saturday=7, use 2 for Monday=1 through Sunday=7, or use 3 for Monday=0 through Sunday=6. Most US payroll systems use 1.

โœ…

Close the function with ) and press Enter. Excel returns a whole number between 1 and 7 (or 0 and 6 for return type 3). If you see a serial number instead, format the cell as Number, not Date.

๐Ÿงช

Verify your formula by checking against a known weekday. January 1, 2026 is a Thursday, so =WEEKDAY("2026-01-01",2) should return 4. If you get a different number, check your return type argument and date format.

๐Ÿ“

To convert the number to a name, wrap WEEKDAY inside CHOOSE: =CHOOSE(WEEKDAY(A2,2),"Mon","Tue","Wed","Thu","Fri","Sat","Sun"). This gives you full control over abbreviations and language without depending on system locale.

The TEXT function offers a simpler path when you only need the day name as a string. Its syntax is =TEXT(value, format_code), and the relevant format codes are "ddd" for three-letter abbreviations like Mon, Tue, Wed, and "dddd" for full names like Monday, Tuesday, Wednesday. Unlike WEEKDAY, TEXT skips the numeric intermediate step entirely. You hand it a date and get readable text back, which is perfect for headers, labels, and printable reports where you do not need to do further math on the result.

For example, =TEXT(A2,"dddd") in a cell next to 2026-05-19 returns "Tuesday" immediately. This output is genuine text, so you can concatenate it with other strings: ="Meeting on " & TEXT(A2,"dddd") produces "Meeting on Tuesday" without any formatting headaches. Many users find this approach more intuitive than WEEKDAY because there is no return type code to remember and no CHOOSE wrapper required. The trade-off is that you cannot easily compare day names with greater-than or less-than logic.

TEXT respects your computer's regional settings, which can be a blessing or a curse depending on your workflow. If your system locale is German, =TEXT(A2,"dddd") returns "Dienstag" instead of "Tuesday". For international teams sharing the same file, this means the output changes based on whoever opens it. To force a specific language regardless of locale, you can use the bracketed locale code: =TEXT(A2,"[$-en-US]dddd") always returns English, while "[$-fr-FR]dddd" always returns French day names like Mardi.

One common mistake is wrapping TEXT around a date that is actually stored as text. If your imported data contains "2026-05-19" as a string rather than a real date, TEXT cannot parse the weekday from it. The fix is to convert the text to a date first using DATEVALUE: =TEXT(DATEVALUE(A2),"dddd"). This double-wrap technique handles the most common date import problems and saves you from manually retyping every cell or running text-to-columns on the entire range.

You can also combine TEXT with other formatting tokens in the same formula. For instance, =TEXT(A2,"dddd, mmmm d, yyyy") returns "Tuesday, May 19, 2026" โ€” a complete, human-readable date with the weekday included. This is invaluable for creating polished report headers, audit trails, and email-friendly date displays. The flexibility of format codes in TEXT goes well beyond weekday output and rewards experimentation with mmm, mmmm, yy, and yyyy combinations.

Now, while TEXT excels at display, WEEKDAY excels at logic. If you need to flag weekends, you cannot easily ask TEXT whether the result is Saturday or Sunday without an extra IF or OR comparison. WEEKDAY returns numbers that slot directly into arithmetic and conditional tests: =IF(WEEKDAY(A2,2)>5,"Weekend","Weekday") is concise and fast. The general rule of thumb: use TEXT for display, WEEKDAY for decisions. Skilled analysts often use both in the same sheet, one for the dashboard header and one for the underlying calculations.

Knowing how to remove duplicates excel rows that share the same weekday is another practical workflow. You can add a helper column with WEEKDAY or TEXT, then use the Data tab's Remove Duplicates tool on that column to keep only one row per weekday. This is useful for sampling schedules, generating weekly archetype reports, or stress-testing models that should behave the same regardless of which Monday or Tuesday they hit. Pairing weekday formulas with Excel's built-in data tools amplifies their value enormously.

FREE Excel Basic and Advance Questions and Answers
Test your Excel skills from beginner to advanced, including date and weekday functions.
FREE Excel Formulas Questions and Answers
Practice WEEKDAY, TEXT, DATE and other formula questions with detailed explanations.

WEEKDAY vs TEXT vs CHOOSE: Picking the Right Method

๐Ÿ“‹ WEEKDAY

WEEKDAY is the workhorse when your formulas need to compare, sum, or count weekday values. Because it returns a number, you can drop it into SUMPRODUCT, COUNTIFS, and array calculations without any conversion. For example, =SUMPRODUCT((WEEKDAY(date_range,2)=1)*1) counts every Monday in a date range. This is far more efficient than parsing text strings, especially on ranges with thousands of rows where speed and memory matter.

The trade-off is that WEEKDAY output is just a digit. Without a wrapper like CHOOSE or a lookup table, your sheet shows 1, 2, 3 instead of Monday, Tuesday, Wednesday. For dashboards and printed reports this is rarely acceptable, so most users wrap the WEEKDAY result. Still, for back-end logic, helper columns, and pivot-friendly fields, WEEKDAY is faster and cleaner than any text-based alternative. Always default to WEEKDAY when math is involved.

๐Ÿ“‹ TEXT

TEXT shines whenever the goal is to display a readable day name. The format codes "ddd" and "dddd" produce abbreviations and full names instantly, with no intermediate numeric step. This makes TEXT ideal for headers, chart labels, email merges, and any output meant for human eyes. The function is also intuitive for beginners who find return type arguments confusing or who do not need the numeric value at all.

However, TEXT has caveats. The output is a string, so you cannot directly perform arithmetic or numeric comparisons on it. It is also locale-sensitive, meaning the same workbook can show different day names on different computers unless you explicitly set a locale code. For sheets that travel across countries or get exported to PDF on multiple systems, lock the locale with bracket codes to avoid surprise translations.

๐Ÿ“‹ CHOOSE

CHOOSE bridges the gap between WEEKDAY's numeric output and TEXT's readability while giving you total control over the labels. Wrap CHOOSE around WEEKDAY with seven custom strings: =CHOOSE(WEEKDAY(A2,1),"Sun","Mon","Tue","Wed","Thu","Fri","Sat"). The result is identical to TEXT in appearance, but you control the spelling, language, and even emoji symbols if your audience prefers them.

This pattern is especially useful for non-English reports where you want guaranteed translations without relying on system locale, or for custom abbreviations like "M, T, W, Th, F, Sa, Su". CHOOSE handles up to 254 arguments, so you have plenty of room for creative labels. The downside is verbosity โ€” a CHOOSE formula is longer than TEXT โ€” but the predictability and portability often outweigh the extra characters in production workbooks.

WEEKDAY vs TEXT: Which Should You Use?

Pros

  • WEEKDAY returns a number, perfect for SUMIFS and COUNTIFS
  • WEEKDAY accepts three return type options for flexibility
  • WEEKDAY works inside conditional formatting rules cleanly
  • TEXT returns ready-to-display day names with no wrapper
  • TEXT supports both abbreviated (ddd) and full (dddd) formats
  • TEXT can combine weekday with month, year, and other tokens

Cons

  • WEEKDAY output is just a digit and needs CHOOSE for names
  • WEEKDAY return type codes can confuse beginners
  • WEEKDAY does not auto-translate to other languages
  • TEXT output is a string and breaks numeric comparisons
  • TEXT respects system locale and can change between computers
  • TEXT fails silently on text-formatted dates without DATEVALUE
FREE Excel Functions Questions and Answers
Master WEEKDAY, TEXT, CHOOSE, and dozens of other functions with practice questions.
FREE Excel MCQ Questions and Answers
Multiple-choice practice covering Excel basics, dates, and weekday function logic.

Day of the Week Function Excel Setup Checklist

Confirm your source cells contain real dates, not text strings that look like dates
Decide whether you need a number (WEEKDAY) or a name (TEXT) before writing the formula
Pick a return type for WEEKDAY: 1 for Sunday-start, 2 for Monday-start, 3 for zero-based
Test the formula on a known date like January 1, 2026 (Thursday) to confirm correct output
Use DATEVALUE to wrap any text-formatted dates before passing them to WEEKDAY or TEXT
For international sheets, lock TEXT locale with bracket codes like [$-en-US]
Wrap WEEKDAY in CHOOSE if you need custom day labels or non-English translations
Apply conditional formatting using WEEKDAY to highlight weekends or specific days
Drag the formula down across your range and verify it adapts to relative references
Document the chosen return type in a comment so future editors do not break the logic
Use WEEKDAY(date, 2) for predictable weekend logic

With return type 2, Monday is 1 and Sunday is 7, so any value greater than 5 means weekend. This makes formulas like =IF(WEEKDAY(A2,2)>5,"Weekend","Weekday") work intuitively for US, European, and most international calendars. It also aligns with ISO 8601 week-numbering conventions used in many business systems and date libraries.

Conditional formatting is where the day of the week function in Excel really earns its keep. Imagine a project schedule that should automatically gray out weekends, or an attendance sheet that highlights Mondays in blue. With WEEKDAY inside a conditional formatting rule, you achieve both in under a minute. Select your date range, open Home, Conditional Formatting, New Rule, and choose "Use a formula to determine which cells to format". Then enter =WEEKDAY(A2,2)>5 and pick a fill color. Every weekend now lights up automatically, even as you add new dates.

This technique scales beautifully across calendars, Gantt charts, and shift planners. Because the rule references WEEKDAY dynamically, it does not matter how many rows you add or which dates fall where โ€” Excel recalculates on every change. You can layer multiple rules: one for Saturdays only, one for Sundays only, one for federal holidays from a named range. The result is a self-maintaining calendar that adapts to your data instead of demanding manual color updates each week or month.

If you want to highlight specific weekdays โ€” say every Friday for payday โ€” change the formula to =WEEKDAY(A2,2)=5. The same pattern works for any day: 1 for Monday, 7 for Sunday, and so on with return type 2. You can also flip to return type 1 and write =WEEKDAY(A2,1)=6 for Friday under Sunday-start convention. Pick whichever return type matches your team's mental model and stay consistent across the workbook to avoid confusion later.

Beyond cell highlighting, weekday logic powers data validation drop-downs that restrict entries to business days only. Combine a helper column with WEEKDAY and a custom validation rule like =WEEKDAY(B2,2)<6 to block weekend entries from being typed in the first place. This is invaluable for HR forms, billing systems, and any workflow where weekends are not valid dates. Users see a clear error message instead of silently corrupting downstream reports, and the rule travels with the file wherever it goes.

For dashboards, you can build a weekday distribution chart using COUNTIFS and a small lookup table. Place day numbers 1 through 7 in column A, then in column B write =COUNTIFS(date_range, "<>", helper_weekday_column, A2). The resulting count tells you how many transactions, tickets, or events occurred on each weekday. Plot it as a bar chart and you have an instant weekly pattern visualization that often reveals operational insights like Monday traffic spikes or quiet Saturdays nobody noticed before.

Sparklines work well too. If you arrange data by week with one row per week and seven columns for weekdays, a column sparkline in the eighth column gives a tiny weekly profile per row. Combined with weekday-based conditional formatting, the visual story becomes obvious at a glance. These mini-charts work especially well in executive summaries where space is tight but pattern recognition matters. Excel's sparkline engine is lightweight enough to handle hundreds of rows without performance issues.

Finally, remember that weekday-aware conditional formatting can be exported to PDF and printed without losing its colors. This means the same logic that drives your interactive Excel dashboard also produces polished printed schedules, payroll registers, and shift rosters. Because the formatting is rule-based rather than manually applied, it never gets out of sync with the underlying dates. That alone saves countless hours per quarter for teams that produce regular reports for clients, executives, or compliance audits.

Advanced applications of the day of the week function go far beyond simple weekday labels. One popular use case is calculating the next occurrence of a specific weekday โ€” for example, the next Tuesday after any given date. The formula =A2+(3-WEEKDAY(A2,2)+7)*1 with appropriate modular logic returns that next Tuesday, and similar patterns work for any weekday. This is gold for recurring meeting schedulers, subscription renewal calculators, and SLA deadline computations that must skip weekends or land on a specific weekday.

Another high-value pattern is counting business days between two dates with weekday awareness. While NETWORKDAYS handles this natively, you can replicate and customize its logic with SUMPRODUCT and WEEKDAY: =SUMPRODUCT((WEEKDAY(ROW(INDIRECT(start_date&":"&end_date)),2)<6)*1). This array formula gives you full control over which days count, which is invaluable when your organization treats certain Saturdays as workdays or excludes specific weekdays for shift patterns. The flexibility outpaces NETWORKDAYS in edge cases.

If you have ever needed to know how to merge cells in excel for a weekly header, weekday formulas help you label those merged cells dynamically. A merged cell spanning seven columns can show ="Week of " & TEXT(start_date,"mmm d") & " - " & TEXT(start_date+6,"mmm d, yyyy"), giving you a self-updating weekly banner that always reflects the current week's date range. Pair this with WEEKDAY-driven conditional formatting in the rows below and you have a polished, low-maintenance weekly view.

Pivot tables also love weekday helpers. Add a column to your raw data with =TEXT(date_column,"dddd"), drop the new field into a pivot's row or column area, and you instantly see metrics aggregated by weekday. Want to know which weekday generates the most sales, support tickets, or website signups? This single helper column makes that pivot possible. Sorting alphabetically gives a quirky order (Friday, Monday, Saturday), so many users add a second WEEKDAY column for numeric sorting and hide it visually.

Macros and Power Query take weekday logic further still. In Power Query, the Date.DayOfWeekName function returns localized names, and Date.DayOfWeek returns a zero-based integer you can use for grouping. This means you can transform massive datasets without slow formulas, then load the result back to Excel as a clean table. Power Query also offers a Day of Week column from the Add Column ribbon, making the entire workflow point-and-click for non-coders. The combination is hard to beat for big data.

For sheets shared with non-technical teammates, consider building a small control panel that lets users pick a return type, a locale, and a label style from drop-downs. You already know how to create a drop down list in excel, so the panel itself is straightforward. Behind the scenes, your formulas reference the panel's selections to switch between Sunday-start and Monday-start, English and Spanish, or full and abbreviated names. This kind of user-controlled flexibility prevents one-off requests and empowers colleagues.

Finally, do not forget Excel's newer dynamic array functions like SEQUENCE and LET. SEQUENCE can generate a continuous range of dates, and combining it with WEEKDAY produces an instant calendar grid. LET makes long weekday formulas readable by naming intermediate calculations. For example, =LET(d, A2, w, WEEKDAY(d,2), IF(w>5,"Weekend","Weekday")) reads cleanly and runs efficiently. Modern Excel rewards these techniques, and adopting them now keeps your spreadsheets relevant for years to come.

Practice More Excel Formula Questions

To get the most out of the day of the week function in Excel, build a few reusable patterns into a personal formula library. Save your favorite WEEKDAY-CHOOSE combinations, TEXT format strings, and conditional formatting rules in a template workbook. Whenever you start a new project, copy the template instead of rewriting formulas from scratch. This single habit cuts setup time by half and ensures consistency across all your reports, which is especially helpful when you are reviewing old files months later and need to remember which return type convention you used.

Document your choices clearly. Add a Notes sheet or cell comments explaining whether your workbook uses Sunday-start or Monday-start logic, which weekdays are considered business days, and any holiday calendars referenced. Future you โ€” or a colleague taking over the file โ€” will thank you. Documentation also prevents bugs when someone changes a return type from 1 to 2 without realizing downstream formulas depend on the original convention. A 30-second note can save hours of debugging later in the file's lifecycle.

Test your formulas against edge cases like leap years, year boundaries, and daylight saving transitions. February 29, 2024 was a Thursday, December 31, 2025 is a Wednesday, and these test points reveal whether your logic handles unusual dates correctly. Build a small validation block with five or six known dates and their expected weekdays. Whenever you modify a formula, glance at the validation block to confirm nothing broke. This lightweight sanity check is far faster than full regression testing and catches most issues immediately.

Performance matters on large datasets. Volatile functions like NOW or TODAY combined with WEEKDAY can slow workbooks with thousands of rows. If you only need today's weekday in one place, calculate it once in a named cell and reference that cell elsewhere. Avoid wrapping WEEKDAY inside array formulas when a helper column achieves the same result more efficiently. Excel's calculation engine is fast, but unnecessary recalculations on every keystroke add up quickly in collaborative environments where many people edit at once.

If you teach Excel or onboard new analysts, weekday formulas are an ideal first lesson because they cover dates, functions, arguments, and string output in one compact topic. Start with TEXT for instant gratification, then introduce WEEKDAY for numeric logic, and finish with CHOOSE for control. Most learners grasp all three within an hour, and the skills transfer directly to date intelligence in business contexts. This pedagogical sequence has helped countless analysts move from copying static dates to building dynamic, self-updating models.

Stay current with Excel's evolving feature set. Microsoft regularly releases new functions like WEEKNUM, ISOWEEKNUM, and the upcoming GROUPBY function that complement weekday logic. Subscribing to the Excel blog or following Microsoft 365 release notes keeps your toolkit fresh. Many features that seem niche today become indispensable a year later, so pay attention to previews and beta channels. Early adopters often build a reputation for delivering polished, modern spreadsheets that stand out from legacy designs.

Finally, practice. Run through quiz questions, tutorials, and real-world challenges until WEEKDAY, TEXT, and CHOOSE feel like second nature. The more you use them, the more naturally you spot opportunities to apply them โ€” like noticing a manual weekend-tagging task that could be automated in 30 seconds. Excel mastery comes from repetition, and the day of the week function is one of those small but mighty topics that rewards regular use with disproportionate productivity gains across every spreadsheet you ever touch.

FREE Excel Questions and Answers
Comprehensive Excel certification practice test covering formulas, functions, and date logic.
FREE Excel Trivia Questions and Answers
Fun trivia format covering Excel history, shortcuts, and feature knowledge you should know.

Excel Questions and Answers

What is the day of the week function in Excel?

The day of the week function in Excel typically refers to WEEKDAY, which returns a number from 1 to 7 representing the day for any given date. You can also use TEXT with format codes like "dddd" or "ddd" to return the day name directly. Both functions accept any cell containing a valid Excel date serial number and return weekday information based on either numeric or text output preferences.

How do I get the day name from a date in Excel?

Use the TEXT function with the format code "dddd" for the full day name or "ddd" for the three-letter abbreviation. For example, =TEXT(A2,"dddd") returns "Tuesday" if A2 contains May 19, 2026. Alternatively, wrap WEEKDAY inside CHOOSE: =CHOOSE(WEEKDAY(A2,2),"Mon","Tue","Wed","Thu","Fri","Sat","Sun"). The CHOOSE method gives you complete control over spelling and language, while TEXT respects system locale settings.

What does WEEKDAY return type 2 mean?

Return type 2 in the WEEKDAY function makes Monday equal to 1 and Sunday equal to 7. This is convenient for weekend detection because any value greater than 5 indicates a weekend. The default return type 1 uses Sunday equals 1 through Saturday equals 7, which matches US payroll conventions. Return type 3 starts Monday at 0 and ends Sunday at 6, which is useful for zero-based array indexing in advanced formulas.

Why is WEEKDAY returning #VALUE! error?

The #VALUE! error usually means your source cell contains text rather than a real date. Left-aligned dates in Excel are typically text strings. Fix this by wrapping the reference in DATEVALUE: =WEEKDAY(DATEVALUE(A2),2). You can also check the cell format under Home and Number Format. If the cell shows General or Text instead of Date, convert it using Data, Text to Columns, or simply retype the date with a proper format like 2026-05-19.

Can I use WEEKDAY in conditional formatting?

Yes, WEEKDAY works perfectly in conditional formatting rules. Select your range, open Home, Conditional Formatting, New Rule, and choose "Use a formula to determine which cells to format". Enter =WEEKDAY(A2,2)>5 to highlight weekends, where A2 is the first cell in your selection. Choose a fill color and click OK. The rule applies dynamically, so any new dates added later get the correct formatting automatically without manual intervention or rule updates.

How do I count Mondays in a date range?

Use SUMPRODUCT with WEEKDAY: =SUMPRODUCT((WEEKDAY(date_range,2)=1)*1). This counts every cell in date_range that falls on a Monday under the Monday-start convention. Replace the 1 with any number from 1 to 7 to count other weekdays. For Sunday-start logic, switch to return type 1 and adjust the comparison number accordingly. This pattern scales well to thousands of rows without performance issues on modern hardware.

What is the difference between WEEKDAY and TEXT for day names?

WEEKDAY returns a number that requires CHOOSE or a lookup to display as a name, while TEXT returns the day name directly as a string. Use WEEKDAY for numeric logic, comparisons, and arithmetic. Use TEXT for display, headers, and concatenation. TEXT also respects system locale, returning translated names automatically, while WEEKDAY plus CHOOSE locks the language to whatever strings you specify in the CHOOSE arguments, ensuring consistent output across regions.

How do I make WEEKDAY start on Monday?

Pass 2 as the second argument: =WEEKDAY(A2,2). This makes Monday equal to 1 and Sunday equal to 7, matching ISO 8601 conventions used in Europe and most international business systems. Alternatively, return type 11 also starts on Monday but uses a different internal code. Return type 2 is the most widely supported and recommended for cross-version compatibility, especially if you share workbooks with users on older Excel versions or other spreadsheet applications.

Can WEEKDAY handle international date formats?

WEEKDAY works on Excel date serial numbers regardless of how the date is displayed. The function does not care whether you see 19/05/2026 or 05/19/2026 โ€” both are the same underlying serial. However, text-formatted dates that look international can confuse DATEVALUE, so always validate that your source cells contain real dates. For locale-specific day names, use TEXT with bracket locale codes like [$-en-US]dddd or [$-fr-FR]dddd to force a specific language output.

How do I find the next specific weekday after a date?

Use a formula like =A2+MOD(target_weekday-WEEKDAY(A2,2),7) where target_weekday is the number 1 to 7 for the day you want. For example, to find the next Friday (5 under return type 2) after the date in A2, write =A2+MOD(5-WEEKDAY(A2,2),7). If the date in A2 is already a Friday, the formula returns the same date; add 7 inside the MOD to always advance to the following week if needed.
โ–ถ Start Quiz