Basic Excel Formulas
Basic Excel Formulas
Excel formulas help users perform calculations and data analysis efficiently. Below is a detailed
guide on common formulas, their usage, and practical exercises.
1. Basic Formulas
Assume you have sales data in column A (A1:A10). You can calculate the total sales
using =SUM(A1:A10).
Find the average sales amount with =AVERAGE(A1:A10).
2. Logical Formulas
4. Text Functions
Practice Exercises
1. Calculate Total Earnings: Use the formula =SUM(B2:E2) for each employee.
2. Find the Highest and Lowest Sales: Use =MAX(B2:B11) and =MIN(B2:B11).
3. Find the Average Commission: Use =AVERAGE(C2:C11).
4. Identify High Earners: Use =IF(B2>6000, "High Earner", "Low Earner").
5. Use VLOOKUP: Find the commission for "Emma" using =VLOOKUP("Emma", A2:E11,
3, FALSE).
By practicing these exercises, you will improve your proficiency with Excel formulas!