Excel Functions
Excel Functions
2. =MAX(range)
Returns the largest number in a range.
4. =AVERAGEIF(range, criteria)
Average of values that meet a specific condition.
Use Case: Average sales above ₹1000, scores > 60.
Example:
=AVERAGEIF(B2:B10, ">60") → {75, 80} → 77.5
5. =SUM(range)
Adds all values in the range.
6. =SUMIF(range, criteria)
Sums values that match a condition.
8. =COUNTIF(range, criteria)
Counts values that match a condition.
10. =COUNTBLANK(range)
Counts empty cells in a range.
Use Case: Missing data tracking.
Example:
=COUNTBLANK(C2:C10) → {"", 45, "", "Yes"} → 2
11. =LARGE(range, k)
Returns the k-th largest value.
12. =SMALL(range, k)
Returns the k-th smallest value.
14. =MEDIAN(range)
Middle value in a sorted list.
16. =MODE.MULT(range)
Returns all modes (if more than one value is frequent).
very useful in data analysis, especially when filtering datasets using more than
They are:
1. Averageifs
2. countifs
3. maxifs
4. minifs
5. sumifs
1. =AVERAGEIFS(average_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)
Returns the average of values that meet multiple conditions.
Example:
=AVERAGEIFS(C2:C10, A2:A10, "East", B2:B10, ">500")
Use Case: Average sales in the East region where quantity > 500
2. =ROUND()
3. =ROUNDUP()
4. =ROUNDDOWN()
5. =POWER()
6. =ROMAN()
7. =ARABIC()
8. =REPT()
.
1. INT()
Removes the decimal part of a number and returns the largest integer less than or equal to it.
Syntax: =INT(number)
Example:
=INT(12.9) → 12
=INT(-4.7) → -5
Use Case: Clean decimal values for IDs, age, unit counts.
2. ROUND()
Rounds a number to the specified number of digits.
Syntax: =ROUND(number, num_digits)
Example:
=ROUND(12.456, 2) → 12.46
=ROUND(89.99, 0) → 90
Use Case: Format numbers for reporting with precise decimal control
3. ROUNDDOWN()
Always rounds down (toward 0), ignoring the decimal part.
Syntax: =ROUNDDOWN(number, num_digits)
Example:
=ROUNDDOWN(5.9, 0) → 5
=ROUNDDOWN(-5.9, 0) → -5
Use Case: Inventory or floor pricing scenarios
4. ROUNDUP()
Always rounds up (away from 0), regardless of the decimal value.
Syntax: =ROUNDUP(number, num_digits)
Example:
=ROUNDUP(5.1, 0) → 6
=ROUNDUP(-5.1, 0) → -6
Use Case: Budgeting, billing, pricing (e.g., round ₹45.10 to ₹46).
.
5. POWER()
Raises a number to the power of another.
Syntax: =POWER(number, power)
Example:
=POWER(2, 3) → 8
(2³ = 2×2×2)
Use Case: Compound interest, exponential growth, physics formulas
6. REPT()
Repeats a character or string a specific number of times.
Syntax: =REPT(text, number_times)
Example:
=REPT("*", 5) → *****
=REPT("-", 3) → ---
Use Case: Create in-cell bar charts, rating stars, visual formatting
.
7. ARABIC()
Converts Roman numerals to Arabic numbers (normal numbers).
Syntax: =ARABIC(text)
Example:
=ARABIC("X") → 10
=ARABIC("MMXXV") → 2025
Use Case: Reverse conversion for analysis or validation
8.ROMAN()
Converts a number to Roman numerals.
Syntax: =ROMAN(number)
Example:
=ROMAN(2025) → MMXXV
=ROMAN(9) → IX
Use Case: Styling reports, chapters (e.g., Part I, II, III).
Why These Matter in Data Analysis