← 30 Days Excel Series
Day 3 of 30BeginnerFormulas

Day 3: Essential Formulas — Part 1

5 questions · Excel Interview Preparation

Q1

What is the SUM function and what are common mistakes when using it?

SUM adds all numbers in a range: =SUM(A1:A100). Common mistakes: (1) Including a header row in the range — SUM ignores text but it is sloppy practice. (2) Summing a column that contains text-formatted numbers — these are ignored silently, giving a wrong total. (3) Using + operators instead of SUM for large ranges — =A1+A2+A3... is harder to maintain. Always verify your SUM against a rough manual estimate.

💡 Interview tip: If SUM returns 0 or a wrong number, the column likely contains text-formatted numbers. Check the cell alignment — numbers right-align, text left-aligns.
Q2

What does AVERAGE do and how do you handle zeros vs blanks?

AVERAGE calculates the arithmetic mean of a range. Important: AVERAGE ignores blank cells but includes zeros. If a zero represents "no data" in your dataset, use AVERAGEIF to exclude zeros: =AVERAGEIF(A1:A100,"<>0"). If you want to average only values meeting a condition: =AVERAGEIF(B1:B100,"North",A1:A100) averages column A values where column B is "North".

💡 Interview tip: Always clarify whether zeros in your data are meaningful values or represent missing data before calculating averages.
Q3

What is the difference between MIN, MAX and MINIFS, MAXIFS?

MIN and MAX return the smallest and largest values in a range unconditionally. MINIFS and MAXIFS (available in Excel 2019+) return the min or max meeting one or more conditions. Example: =MAXIFS(Revenue, Region, "North") returns the highest revenue from the North region only.

💡 Interview tip: MINIFS and MAXIFS are frequently asked in intermediate interviews — know the syntax: =MAXIFS(max_range, criteria_range, criteria).
Q4

What does ROUND do and why does it matter for financial reports?

ROUND(number, num_digits) rounds a number to a specified number of decimal places. ROUND(3456.789, 2) returns 3456.79. ROUNDUP always rounds away from zero; ROUNDDOWN always rounds toward zero. In financial reports, rounding matters because: (1) displaying =A1*B1 may show a value that appears to add up correctly but the underlying unrounded values do not. (2) Slight rounding differences cause "total does not match sum" issues. Best practice: round at the final calculation step, not intermediates.

💡 Interview tip: Never use cell formatting to "round" values — it only changes display, not the actual value used in calculations.
Q5

What is a named range and why should you use them in formulas?

A named range assigns a descriptive name to a cell or range — for example, naming B2:B100 as "Revenue". Formulas using named ranges are more readable: =SUM(Revenue) vs =SUM(B2:B100). Named ranges are also absolute by default, so they do not shift when copied. Create via the Name Box or Formulas → Define Name. For large workbooks with multiple formula writers, named ranges reduce errors and make formulas self-documenting.

💡 Interview tip: Interviews sometimes ask you to audit a workbook — named ranges make this much easier. If you are building a model, always use named ranges for key inputs.
← Day 2All DaysDay 4

Want 1:1 Excel coaching?

Join EVIKA Academy for live Excel training, real projects, and placement support in Delhi NCR.

Book Free Demo →
Best Data Analytics Course in Noida Delhi NCR | EVIKA ACADEMY