✨ Day 5: Advanced Excel Functions
Conditional & Statistical Mastery
Ghaziabad, Mohan Nagar
Drafted by: HR Prateek Sharma
🎯 Mastering Conditional Functions
Advanced formulas for precise data analysis and filtering
📊 MINIFS Function
MINIFS - Minimum with Multiple Conditions
=MINIFS(min_range, criteria_range1, criteria1, criteria_range2, criteria2, ...)
Find minimum salary for a specific job role (e.g., Intern)
=MINIFS(salary_range, job_role_range, "Intern")
- Purpose: Find the smallest value that meets multiple criteria
- Use in HR: Identify lowest salary by department, role, or experience level
- Advantage: Combine multiple conditions in a single formula
➕ SUMIFS Function
SUMIFS - Sum with Multiple Conditions
=SUMIFS(sum_range, criteria_range1, criteria1, criteria_range2, criteria2, ...)
=SUMIFS(monthly_income, department, "IT", gender, "Female")
=SUMIFS(income, dept, "Finance", gender, "Female")
SUMIF → Single Criteria | SUMIFS → Multiple Criteria
🔢 Comparison: SUMIF vs SUMIFS
SUMIF
Single ConditionUse when you need to sum based on ONE criterion only
SUMIFS
Multiple ConditionsUse when you need to sum based on TWO or MORE criteria
🎯 COUNTIFS Function
COUNTIFS - Count with Multiple Conditions
=COUNTIFS(criteria_range1, criteria1, criteria_range2, criteria2, ...)
=COUNTIFS(gender_col, "Female", marital_status, "Married")
- Purpose: Count cells that meet multiple criteria simultaneously
- HR Applications: Demographics analysis, workforce segmentation
- Example Uses: Count employees by department + gender, or by age group + designation
🏆 LARGE Function
LARGE - Find Nth Largest Value
=LARGE(array, n)
Purpose: Returns the nth largest value from a dataset
n = 1: Largest value (1st highest)
n = 2: Second largest value
n = 3: Third largest value, and so on...
=LARGE(salary_col, 2)
=LARGE(table1[monthly income], 1)
or identifying outliers in your data without sorting!
- Opposite Function: SMALL (finds nth smallest value)
- HR Use Cases: Top salary ranges, performance rankings, bonus calculations
- Advantage: No need to sort data - directly extract ranked values
📋 Function Summary
MINIFS
Find minimum value with conditions
StatisticalSUMIFS
Sum values with multiple criteria
AggregationCOUNTIFS
Count cells meeting conditions
CountingLARGE
Find nth largest value
Ranking
Comments
Post a Comment