Excel Practice Test

โ–ถ

Excel math functions form the computational backbone of every spreadsheet, from a small household budget to a multimillion-dollar financial model. When people talk about excel math, they usually mean the family of built-in formulas that handle addition, subtraction, multiplication, division, rounding, exponents, logarithms, and trigonometric operations without forcing you to write a single line of code. Knowing these functions inside out is the difference between a slow, error-prone workbook and a polished tool that updates instantly when inputs change.

Microsoft Excel ships with more than 80 dedicated math and trigonometry functions, and that does not even include the statistical, financial, or engineering siblings that perform mathematical operations behind the scenes. Once you understand how SUM, PRODUCT, ROUND, MOD, ABS, and SUMPRODUCT actually behave with different data types, you can replace dozens of helper columns with a single elegant formula. That compactness is what professional analysts and accountants rely on every single day.

This guide is built for readers who already know how to type a formula in a cell but want to take their numerical fluency to a level that earns promotions and saves entire afternoons. We will walk through every major math function, show you how to nest them efficiently, and point out the subtle gotchas that cause silent rounding errors in production workbooks. By the end you will recognize when SUMIFS beats a pivot table and when ROUND quietly destroys data accuracy.

We will also weave in adjacent topics that share the math toolkit, such as vlookup excel patterns that feed numeric arguments into calculations, and structural tricks like how to merge cells in excel without breaking SUM ranges. Math functions rarely live alone in real worksheets, so context matters as much as syntax. Expect concrete examples with real numbers rather than vague theory.

If you are studying for a Microsoft Office Specialist certification, preparing for a finance interview, or simply tired of manually verifying totals, this article will become a reference you bookmark. Every formula shown here works in Excel 2016 through Microsoft 365, with notes where newer dynamic array engines change behavior. The Mac and Windows versions are identical for math functions, so the keystrokes you learn transfer cleanly between platforms.

Before we dive into individual functions, take a moment to think about what excel math really means in 2026. Modern spreadsheets handle 17 billion cells per sheet, support spilled arrays, and integrate Python through the new PY function. Mastering the fundamentals first means you can layer those advanced features on a rock-solid base. Let us begin with the everyday workhorses that solve roughly 80 percent of all numerical problems.

Throughout the article you will find practice quizzes, comparison tables, and FAQ entries designed to reinforce every concept. Working through them in order builds the kind of muscle memory that interviewers and auditors test for. Grab a blank workbook, follow along, and treat this as a guided tour rather than a list of definitions. The investment pays back the very first time a deadline crunches.

Excel Math Functions by the Numbers

๐Ÿ“Š
80+
Math & Trig Functions
๐Ÿ”ข
15 digits
Precision Limit
โšก
17 billion
Max Cells Per Sheet
๐Ÿ“ˆ
64 levels
Formula Nesting Depth
๐ŸŽฏ
8,192 chars
Max Formula Length
Try Free Excel Math Practice Questions

Core Math Function Categories You Must Know

โž• Aggregation Functions

SUM, AVERAGE, COUNT, MAX, MIN, PRODUCT, and SUBTOTAL collapse ranges into single values. They form the foundation of dashboards, financial summaries, and pivot replacements.

๐ŸŽฏ Conditional Math

SUMIF, SUMIFS, AVERAGEIF, COUNTIF, and SUMPRODUCT apply criteria before calculating. Master these and you replace half the pivot tables in your company.

๐Ÿ”ข Rounding & Precision

ROUND, ROUNDUP, ROUNDDOWN, MROUND, CEILING, FLOOR, TRUNC, and INT control how decimals appear and behave. Critical for currency, invoices, and audits.

๐Ÿ“ Power & Logarithms

POWER, SQRT, EXP, LN, and LOG10 handle exponential growth, compound interest, and scientific modeling. Essential for finance and engineering work.

๐Ÿ“ Trigonometry

SIN, COS, TAN, ASIN, ACOS, ATAN, ATAN2, RADIANS, and DEGREES support geometry, physics, and architectural calculations directly in cells.

Aggregation functions are where every spreadsheet career begins. SUM adds a range, AVERAGE computes the arithmetic mean, MIN and MAX find extremes, and COUNT tallies numeric entries. These five functions, combined with the relative and absolute reference operators, solve roughly half of all real-world spreadsheet tasks. The trick is knowing when to use COUNT versus COUNTA, since COUNT ignores text while COUNTA counts any non-empty cell, including stray spaces that look blank.

The SUM function deserves special attention because it is the most common formula written in any office. Modern Excel treats SUM as a smart aggregator that handles spilled arrays, three-dimensional references across sheets, and even structured table references like SUM(Sales[Revenue]). A three-dimensional sum, written SUM(Jan:Dec!B5), totals the same cell across twelve worksheets in a single keystroke. That single feature replaces an entire consolidation tab in many monthly reporting workbooks.

PRODUCT multiplies every numeric argument together and is invaluable for compound growth, probability chains, and unit conversions. If you write PRODUCT(1.05, 1.05, 1.05) Excel returns 1.157625, the three-year compound factor at 5 percent annual growth. This pairs beautifully with POWER for cleaner formulas: POWER(1.05, 3) returns the identical result and scales to any exponent. Both functions ignore text and logical values, so a stray label in your range will not break the math.

SUMPRODUCT is the most underrated function in Excel. It multiplies parallel arrays element by element and then sums the products, making it the original array formula long before dynamic arrays existed. SUMPRODUCT(A2:A100, B2:B100) calculates weighted totals such as quantity times price across an invoice. Add boolean conditions inside and it becomes a Swiss-army criteria engine: SUMPRODUCT((Region="West")*(Sales)) returns Western regional sales without volatile array entry. You can also use vlookup excel inside SUMPRODUCT for lookup-driven aggregations.

SUBTOTAL deserves a callout because it ignores rows hidden by filters, which standard SUM does not. SUBTOTAL(9, range) sums visible rows, SUBTOTAL(109, range) sums visible rows while also ignoring manually hidden ones. This makes it perfect for filtered tables where users expect totals to update as they slice the data. Pair it with structured tables and Excel automatically inserts a SUBTOTAL row when you toggle the Total Row checkbox. That single integration saves hours over the course of a year.

AGGREGATE is SUBTOTAL on steroids. It supports 19 functions, including LARGE, SMALL, MEDIAN, and PERCENTILE, and offers granular options for ignoring errors, hidden rows, and other SUBTOTAL calls. If your workbook contains DIV/0 errors that you cannot fix immediately, AGGREGATE(9, 6, range) sums the range while quietly skipping every error cell. That defensive behavior is gold during month-end close when one bad input would otherwise cascade through every downstream calculation.

Finally, do not overlook the simple operators that pair with these functions: caret for exponents, asterisk for multiplication, slash for division, and percent for fast percentage entry. Excel respects standard order of operations, so 2+3*4 returns 14, not 20. Wrap subtotals in parentheses to remove ambiguity. Good formula writers parenthesize generously because future-you reading the formula in six months will thank present-you for the clarity.

FREE Excel Basic and Advance Questions and Answers
Test your knowledge of foundational and advanced Excel features with this comprehensive practice quiz.
FREE Excel Formulas Questions and Answers
Sharpen your formula skills with timed practice questions covering math, lookup, and logical formulas.

Rounding and Precision: Mastering Numeric Display

๐Ÿ“‹ ROUND Family

ROUND, ROUNDUP, and ROUNDDOWN take a number and a digit count, returning a value adjusted by standard rounding rules. ROUND(1.567, 2) returns 1.57, ROUNDUP forces away from zero, and ROUNDDOWN forces toward zero. The digit argument accepts negatives, so ROUND(1547, -2) returns 1500, which is incredibly useful for executive summaries that show numbers in hundreds or thousands.

Banker's rounding does not exist as a native Excel function, but you can emulate it with MROUND or a custom IF formula. Always remember that ROUND changes the underlying value, not just the display. Use cell formatting if you only want visual rounding without altering totals downstream. Confusing the two is the single most common source of penny-off discrepancies in financial reports.

๐Ÿ“‹ MOD, INT, TRUNC

MOD returns the remainder after division, which sounds boring until you realize it powers alternating row shading, modular arithmetic, and time calculations across midnight. MOD(17, 5) returns 2 because 17 divided by 5 leaves a remainder of 2. Combine MOD with ROW to highlight every third row: =MOD(ROW(),3)=0 inside conditional formatting. Date-pickers, leap-year tests, and shift schedules all lean on MOD.

INT and TRUNC both strip decimals, but they behave differently with negatives. INT(-2.5) returns -3 because it rounds toward negative infinity, while TRUNC(-2.5) returns -2 because it simply chops the decimal. For positive numbers they are identical. Choose TRUNC when you need predictable behavior with mixed-sign data, and choose INT when you specifically want floor behavior across all signs.

๐Ÿ“‹ CEILING & FLOOR

CEILING.MATH and FLOOR.MATH round to the nearest multiple of a chosen significance. CEILING.MATH(47, 5) returns 50, useful for pricing tiers, packaging quantities, and time-bucket reporting. FLOOR.MATH(47, 5) returns 45. Both functions accept an optional mode argument that controls how negative numbers round, giving you full control in scientific or financial contexts.

MROUND is the symmetric sibling that rounds to the nearest multiple in either direction. MROUND(47, 5) returns 45 because 47 is closer to 45 than to 50, while MROUND(48, 5) returns 50. These functions are heroes when you must round prices to the nearest nickel, schedule meetings on quarter-hour boundaries, or align inventory orders to case packs of twelve, twenty-four, or forty-eight units.

Native Math Functions vs Manual Calculations

Pros

  • Formulas recalculate automatically when inputs change, eliminating manual rework
  • Built-in functions are tested by Microsoft and handle edge cases like blanks and text
  • Audit trails are easy because every cell shows its formula in the formula bar
  • Range references scale instantly when you add new rows or columns of data
  • Dynamic arrays let one formula spill results across many cells without copy-paste
  • Functions like SUMIFS replace pivot tables for many recurring summary tasks
  • Cross-sheet 3D references consolidate twelve months in a single elegant expression

Cons

  • Floating-point precision can produce tiny rounding artifacts in long calculation chains
  • Volatile functions like INDIRECT and OFFSET slow large workbooks dramatically
  • Deeply nested formulas become unreadable and risky to maintain over time
  • Excel limits formulas to 8,192 characters and 64 levels of nesting
  • Errors propagate silently if you forget IFERROR or IFNA wrappers
  • Math functions ignore text, which can mask data quality issues unexpectedly
  • Merged cells and hidden rows quietly break ranges if SUBTOTAL is not used
FREE Excel Functions Questions and Answers
Practice the most-asked function questions covering math, text, date, and logical categories.
FREE Excel MCQ Questions and Answers
Multiple-choice questions designed to mirror real certification and job-interview Excel testing formats.

Excel Math Mastery Checklist

Confirm every SUM range expands automatically when new rows are added below the data
Use SUMIFS instead of SUMIF when you need multiple criteria for cleaner readable formulas
Wrap division formulas with IFERROR to prevent DIV/0 errors in printed reports
Verify that ROUND changes underlying values when downstream totals must reconcile to penny
Replace volatile OFFSET with INDEX whenever possible to improve workbook recalculation speed
Use SUBTOTAL or AGGREGATE inside filtered tables so totals respect the visible rows
Apply absolute references with F4 on any constant inputs like tax rates or growth factors
Audit nested formulas with the Evaluate Formula tool before sending workbooks externally
Test edge cases with zero, negative, blank, and text inputs to surface hidden bugs
Document complex math logic in an adjacent notes column for future maintainers
Excel only stores 15 significant digits per number

If you paste a 20-digit credit card or order number, Excel silently replaces the last five digits with zeros because of IEEE 754 floating-point storage. Always format such columns as Text before pasting, or prefix the value with an apostrophe to preserve every character. This single setting prevents one of the most expensive data-integrity bugs in business spreadsheets.

Trigonometry, logarithms, and exponents extend Excel from a glorified calculator into a genuine scientific computing platform. SIN, COS, and TAN accept radians, not degrees, which trips up newcomers every single time. Wrap your angle in RADIANS first: SIN(RADIANS(30)) returns 0.5 as expected. The inverse functions ASIN, ACOS, and ATAN return radians and pair with DEGREES for conversion back. Architects, surveyors, and machinists rely on these every day for layout and clearance calculations directly in spreadsheets.

ATAN2 is the secret weapon for bearing and angle calculations. Unlike standard ATAN, it accepts two arguments, an x and a y coordinate, and returns the correct quadrant angle from negative pi to positive pi. GIS analysts use ATAN2 to compute compass headings between latitude and longitude pairs. Combine it with the haversine formula and you have a distance calculator that works for any two points on Earth, all inside a single cell formula without any add-ins.

Exponential and logarithmic functions handle compound growth, half-life decay, and risk modeling. EXP(x) returns e raised to the x power, where e equals roughly 2.71828. LN is the natural logarithm, LOG10 is base ten, and LOG accepts an arbitrary base as its second argument. Financial analysts use LN heavily for continuous compounding, while data scientists use LOG10 to transform skewed distributions before charting. These functions also appear inside Black-Scholes option-pricing models built entirely in native Excel.

POWER deserves attention beyond simple exponents. POWER(2, 10) returns 1024, but POWER(8, 1/3) returns 2 because raising to the reciprocal extracts a root. SQRT is the dedicated square-root function and is slightly faster than POWER(x, 0.5) for that specific case. SQRTPI multiplies its argument by pi before taking the square root, a niche but useful shortcut in statistics and physics. Negative arguments cause SQRT to return NUM errors, so wrap with ABS or IF when the sign is uncertain.

The constants PI, E (no direct function, use EXP(1)), and the trigonometric pairs let you build calculus-style models without leaving the grid. Numerical integration via the trapezoidal rule fits in a few SUMPRODUCT formulas. Discrete differentiation reduces to a single subtraction across rows. The combination of dense math functions with spilled dynamic arrays in Microsoft 365 makes Excel a credible alternative to MATLAB for many engineering quick-look problems, particularly when the audience prefers a familiar spreadsheet interface.

Combinatorial math is another underused corner. FACT computes factorials, COMBIN counts combinations, PERMUT counts permutations, and the newer COMBINA and PERMUTATIONA allow repetition. Probability instructors love these for teaching binomial distributions. Lottery-odds calculators, poker-hand probabilities, and quality-control sampling plans all collapse into single-cell formulas. Just watch the size: FACT(170) approaches Excel's numeric ceiling of 1.8 times ten to the 308th power. Beyond that you receive NUM errors and need logarithmic identities to continue.

Finally, hyperbolic functions SINH, COSH, TANH and their inverses round out the scientific toolkit. They appear in catenary curves, neural network activation functions, and special relativity calculations. Most office users will never touch them, but their presence means Excel can stand in for a graphing calculator during impromptu engineering discussions. Knowing they exist also helps you read formulas inherited from technical colleagues without having to immediately Google every unfamiliar three-letter function name.

Conditional math is where Excel truly shines for business analysts. SUMIF takes a range, a criterion, and an optional sum range. SUMIF(A2:A100, "West", B2:B100) sums every value in column B where column A contains the text West. SUMIFS reverses the argument order and accepts unlimited criteria pairs: SUMIFS(Sales, Region, "West", Year, 2026, Product, "Widget"). Always reach for SUMIFS first because it scales gracefully when stakeholders inevitably request additional filters next quarter.

COUNTIFS and AVERAGEIFS mirror SUMIFS exactly, so once you learn one, you essentially learn all three. The criteria arguments support wildcards: asterisk matches any sequence of characters, question mark matches a single character, and tilde escapes literal asterisks or question marks. You can also compare with operators inside quotes, such as ">=1000" or "<>"&A1, where the ampersand concatenates a cell reference into the comparison string. These patterns appear constantly in real workplace formulas.

MAXIFS and MINIFS arrived in Excel 2019 and Microsoft 365, finally giving conditional versions of MAX and MIN. Before they existed, analysts wrote ugly array formulas with IF wrappers. Today you simply write MAXIFS(Price, Category, "Electronics") and Excel returns the highest electronics price in the dataset. These functions integrate seamlessly with tables, named ranges, and even dynamic spilled arrays. Combined with knowing how to freeze a row in excel so headers stay visible during scrolling, your dashboards become genuinely usable on large datasets.

SUMPRODUCT remains the universal solvent when criteria become complex. Suppose you want to sum sales where revenue exceeds the median and region starts with W. SUMPRODUCT((Revenue>MEDIAN(Revenue))*(LEFT(Region,1)="W")*Sales) handles it in one cell. The trick is that boolean TRUE and FALSE coerce to 1 and 0 when you multiply them, letting you build arbitrary conditional logic. This pattern outlives every new function Microsoft adds because it composes from primitives.

Dynamic array functions FILTER, SORT, and UNIQUE in Microsoft 365 reshape ranges before math functions consume them. SUM(FILTER(Sales, Region="West")) gives you the same answer as SUMIF but spills the underlying filtered list into adjacent cells for audit. SORT(UNIQUE(Region)) produces a clean drop-down source, which connects naturally to how to create a drop down list in excel using data validation. Modern workflows lean on these spilled arrays heavily.

Performance matters at scale. SUMIFS evaluated against a 500,000-row table runs in milliseconds on modern hardware, but ten SUMIFS feeding a single dashboard cell can slow recalculation noticeably. Profile with the Formula Calculation timer in the developer tab. Replace repeated criteria evaluations with helper columns when possible, since a single LOOKUP into a precomputed result beats ten conditional aggregations every time. This is the bread and butter of enterprise Excel performance tuning.

Finally, remember that math functions ignore text by design. If your data contains numbers stored as text, SUM returns zero for those cells without warning. VALUE or the double-unary minus trick (--A1) converts text-numbers to real numbers inline. The ISNUMBER function helps you audit a column quickly: =SUMPRODUCT(--ISNUMBER(A2:A100)) tells you how many cells in the range Excel actually treats as numeric. Spend five minutes on data hygiene before trusting any aggregate.

Master Excel Formulas with Free Practice Tests

Practical fluency with excel math functions comes from repetition on real datasets, not from memorizing syntax tables. Download a public dataset such as the Federal Reserve interest rate history or the NYC taxi trip data, then challenge yourself to compute weighted averages, conditional sums, and rolling twelve-month totals using nothing but native functions. Within a week of daily practice the muscle memory transfers permanently, and you will write formulas as fluently as you write English sentences. There is no substitute for hands-on reps.

Build a personal formula library inside a workbook you control. Reserve one sheet per function family and document working examples with annotated inputs and expected outputs. Whenever you solve a tricky problem on the job, copy the pattern into your library. Six months later when a similar problem reappears, you reach for your own proven snippet instead of starting from scratch. This single habit separates analysts who plateau from those who continuously level up year after year.

Use the Name Manager liberally for constants and frequently referenced ranges. Naming the cell containing your tax rate TaxRate instead of $B$2 makes every dependent formula self-documenting. Excel also supports named formulas, so you can store reusable logic like =TaxRate*Subtotal under a friendly name. Reviewers reading your workbook six months later thank you, and your future self spends zero time decoding what $B$2 originally meant. Names also survive structural changes that would break direct cell references.

Adopt a consistent error-handling pattern. Wrap every division and lookup in IFERROR or IFNA with sensible fallbacks. Use color formatting to flag rows where the fallback fired so problems do not hide forever. Combine this with conditional formatting rules that highlight outliers, negative values, or stale dates. A workbook that visually surfaces its own anomalies catches mistakes long before stakeholders notice, and that quiet reliability is what builds your reputation as the spreadsheet expert on the team.

Learn keyboard shortcuts that accelerate math entry. F2 enters edit mode, F4 cycles reference types, F9 evaluates the selected portion of a formula, and Ctrl+Shift+Enter used to be required for array formulas before dynamic arrays. Alt+= inserts an automatic SUM, while Ctrl+T turns a range into a structured table that automatically extends ranges in formulas. These shortcuts feel slow during the first week and addictive after the second. Print a cheat sheet and tape it next to your monitor for a month.

Stay current with new functions. Microsoft adds capabilities almost every quarter to Microsoft 365, and recent additions like LAMBDA, LET, TEXTSPLIT, and the PY Python integration unlock entirely new patterns. LET in particular eliminates redundant calculations inside a single formula, dramatically improving readability and performance for complex math. LAMBDA lets you define your own reusable functions without VBA. Subscribing to the Excel blog or following the team on social media keeps you ahead of the curve.

Finally, do not neglect the basics during your pursuit of advanced features. Most workbook bugs trace back to a misplaced absolute reference, a forgotten parenthesis, or an unintended merged cell breaking a SUM range. Run a quick sanity check on every important calculation: does the total roughly match a back-of-envelope estimate? Does it change sensibly when an input changes? This decade-old habit of cross-checking with rough mental math catches more errors than any add-in or auditing tool you can buy.

FREE Excel Questions and Answers
Full-length practice test mirroring real Excel certification exam format and difficulty levels.
FREE Excel Trivia Questions and Answers
Fun trivia-style questions that reinforce Excel facts, shortcuts, and lesser-known function behaviors.

Excel Questions and Answers

What is the difference between SUM and SUMIF in Excel?

SUM adds every numeric value in a specified range without any filtering, while SUMIF adds only the values that meet a specified condition. For example, SUM(B2:B100) totals every cell, but SUMIF(A2:A100, "West", B2:B100) totals only rows where column A equals West. Use SUMIFS when you need multiple criteria, since it accepts unlimited condition pairs and scales better than nested SUMIF formulas.

Why does Excel show a tiny non-zero answer for 0.1 plus 0.2 minus 0.3?

This is caused by IEEE 754 binary floating-point storage, which cannot represent certain decimal fractions exactly. The residual is typically around 5.5 times ten to the negative seventeenth power. Wrap comparisons in ROUND when testing for equality, such as ROUND(A1, 10)=0. This is universal across all spreadsheet applications and most programming languages, not an Excel-specific defect.

How do I round to the nearest five cents or quarter hour?

Use MROUND with the desired multiple as the second argument. MROUND(2.37, 0.05) returns 2.35, rounding to the nearest nickel. For time, MROUND(A1, TIME(0,15,0)) rounds to the nearest fifteen minutes. CEILING.MATH and FLOOR.MATH offer one-directional alternatives when you specifically need to round up or down to a multiple, which is common for pricing tiers and case-pack inventory.

What is the maximum number Excel can store accurately?

Excel stores numbers using 64-bit IEEE 754 double precision, which provides about 15 significant digits of accuracy. The maximum positive value is roughly 1.8 times ten to the 308th power, while the smallest positive value is about 2.2 times ten to the negative 308th power. Beyond 15 significant digits, additional digits are silently replaced with zeros, which is why long account numbers should be stored as text.

How can I sum only visible cells after filtering?

Use SUBTOTAL with function number 9 to ignore filtered-out rows, or 109 to also ignore manually hidden rows. SUBTOTAL(9, B2:B100) returns the sum of visible cells in the range. AGGREGATE offers even more control, supporting nineteen functions and granular options for ignoring errors, hidden rows, and nested SUBTOTAL calls. Structured tables automatically use SUBTOTAL when you toggle the Total Row option.

What does the MOD function do and when should I use it?

MOD returns the remainder after dividing one number by another. MOD(17, 5) returns 2 because 17 divided by 5 has a remainder of 2. Common uses include alternating row shading with =MOD(ROW(),2)=0 in conditional formatting, calculating time differences that cross midnight, leap-year tests, and any modular arithmetic such as cyclical schedules or rotating on-call duty rosters.

How do I calculate compound interest using Excel math functions?

Use POWER for clean compound calculations: =Principal*POWER(1+Rate, Years) returns the future value. For example, =1000*POWER(1.05, 10) yields about 1628.89, representing 1000 dollars growing at 5 percent annually for 10 years. For continuous compounding, use EXP instead: =Principal*EXP(Rate*Years). Financial functions like FV automate this further with built-in support for periodic payments.

What is the difference between INT and TRUNC?

Both functions remove the decimal portion of a number, but they behave differently with negatives. INT rounds toward negative infinity, so INT(-2.7) returns -3. TRUNC simply chops off the decimal, so TRUNC(-2.7) returns -2. For positive numbers they return identical results. Choose TRUNC when you need predictable behavior across positive and negative values, and choose INT when you specifically want floor behavior.

Can Excel handle trigonometry calculations natively?

Yes, Excel includes SIN, COS, TAN, ASIN, ACOS, ATAN, ATAN2, plus hyperbolic versions like SINH and COSH. These functions accept and return values in radians, so wrap angles with RADIANS for conversion from degrees: SIN(RADIANS(30)) returns 0.5. ATAN2 is particularly useful because it accepts separate x and y arguments and returns the correct quadrant angle, essential for bearing and compass-heading calculations.

How can I prevent division-by-zero errors in my formulas?

Wrap division formulas in IFERROR with a sensible fallback: =IFERROR(A1/B1, 0) returns zero when B1 is zero or blank instead of showing DIV/0. Alternatively use IF to check the denominator first: =IF(B1=0, 0, A1/B1). For lookup-based math, use IFNA which only catches NA errors and lets other errors surface for debugging. Consistent error handling makes printed reports look professional.
โ–ถ Start Quiz