📝 Quick Assessment: Test Your Excel Knowledge
Before we start, answer these 10 questions to establish your starting level.
Basic Skills (Questions 1-5)
Advanced Skills (Questions 6-10)
Your Assessment Results
Getting Started: Excel Essentials
⏱️ ~10 minutesWhat You'll Learn
- Create and format a basic data table
- Apply number formatting (currency)
- Make your spreadsheet look professional
Create a table with 3 columns (Name, Department, Salary) and 3 employee records.
Steps:
- Open Excel and create a new workbook
- In row 1, type headers: Name, Department, Salary
- Add 3 employee records below the headers
- Save your file
Make headers bold, add a background color, and center-align them.
Steps:
- Select row 1 (click the row number)
- Make bold: Ctrl+B
- Add color: Home tab → Fill Color
- Center align: Home tab → Center button
Format the Salary column to display as currency with $ and 2 decimal places.
Steps:
- Select cells with salary values (C2:C4)
- Right-click → Format Cells
- Select Currency category
- Click OK
Formulas & Functions: Do the Math
⏱️ ~12 minutesWhat You'll Learn
- Create and use SUM and AVERAGE functions
- Understand how cell references work
- Copy formulas to multiple cells
Calculate total salary using the SUM function.
Steps:
- Click on cell C5 (below your salary data)
- Type: =SUM(C2:C4)
- Press Enter
- The total salary should appear in C5
Find the average salary across all employees.
Steps:
- Click on cell C6
- Type: =AVERAGE(C2:C4)
- Press Enter
- Add label "Average" in B6
Add a Bonus column that calculates 10% of each salary and copy the formula down.
Steps:
- In D1, type "Bonus"
- In D2, type: =C2*0.1
- Copy D2 (Ctrl+C)
- Select D3:D4 and paste (Ctrl+V)
Data Analysis: Sort & Filter
⏱️ ~10 minutesWhat You'll Learn
- Sort data in ascending and descending order
- Apply AutoFilter to explore data
- Use MIN, MAX, and COUNT functions
Organize employee data by salary from highest to lowest.
Steps:
- Select your entire data range including headers
- Go to Data tab → Sort
- Sort by "Salary" column, Descending
- Ensure "My data has headers" is checked
- Click OK
Add filter dropdowns to quickly analyze data by different columns.
Steps:
- Click anywhere in your data
- Go to Data tab → Filter
- Notice dropdown arrows now appear in headers
- Try filtering by Department
- Turn the filter off to see all data again
Build a summary showing MIN, MAX, and COUNT of salaries.
Steps:
- In an empty area, create labels: "Min Salary", "Max Salary", "Count"
- Below each, create formulas:
- =MIN(C2:C4)
- =MAX(C2:C4)
- =COUNT(C2:C4)
Charts & Visualization: Tell a Story
⏱️ ~12 minutesWhat You'll Learn
- Create different chart types (Bar, Pie)
- Customize charts with titles and labels
- Make data tell a compelling story
Visualize salary differences between employees using a bar chart.
Steps:
- Select your Name and Salary data
- Go to Insert tab → Chart → Bar Chart
- Choose a bar chart style
- Click to insert the chart
Add titles and labels to make your chart professional and clear.
Steps:
- Double-click your chart to edit it
- Right-click → Add Chart Title
- Type a title: "Employee Salary Comparison"
- Add axis titles and adjust colors
- Click outside to finish
Show salary distribution with a pie chart.
Steps:
- Create a summary table with Department and Total Salary
- Select this data
- Insert → Chart → Pie Chart
- Add title and data labels showing percentages
Advanced Techniques: Conditional Logic
⏱️ ~13 minutesWhat You'll Learn
- Use IF statements for conditional logic
- Apply COUNTIF and SUMIF functions
- Create dynamic analyses
Add a Bonus Level column using nested IF statements.
Steps:
- Add header "Bonus Level" in E1
- In E2, type: =IF(C2>50000,"High",IF(C2>35000,"Medium","Low"))
- Copy to E3:E4
- Review which employees get each level
Find how many employees fall into each bonus level category.
Steps:
- In an empty area, create a label: "High Earners"
- Type: =COUNTIF(E2:E4,"High")
- Press Enter
- Repeat for "Medium" and "Low" categories
Calculate total salary only for "High" bonus level employees.
Steps:
- Create a label: "High Earners Total"
- Type: =SUMIF(E2:E4,"High",C2:C4)
- This sums C2:C4 only where E2:E4 = "High"
- Verify: High + Medium + Low totals should equal total salary
🏆 Final Challenge: Comprehensive Project
⏱️ ~3 minutes (review)Your Final Challenge
- Review and polish your complete work
- Ensure all formulas work correctly
- Verify your charts look professional
Take a moment to review all your work and ensure everything is polished.
Your Checklist:
- ✓ Data table with clear, formatted headers
- ✓ All formulas calculating correctly (SUM, AVERAGE, IF, COUNTIF, SUMIF)
- ✓ Professional charts with titles
- ✓ Summary statistics (Min, Max, Count)
- ✓ Bonus level categorization
- ✓ Consistent formatting throughout
- ✓ Clean layout and good spacing
Create an executive summary with key insights (optional extension).
Steps:
- Create a new sheet tab or use blank area
- Add title: "Executive Summary"
- Include 3-4 key metrics
- Add insights (e.g., "X employees earn above average")
- Reference your charts