Excel Data Analysis with Statistics
Transform Raw Data into Actionable Business Intelligence
Essential Statistics Types for Data Analysis
Simple Totals and Averages
Basic calculations that provide immediate insights into your data trends and help identify patterns at a glance.
Subjective Averaging
Weighted averages and conditional calculations that provide deeper context based on specific criteria and importance levels.
Percentages and Comparisons
Relative values that make data accessible and compelling for stakeholders to understand progress and performance.
Impact of Data Spaces on Analysis
TRIM only removes spaces before and after cell content, never between words. 'John Smith' stays as 'John Smith', not 'JohnSmith'. It's safe to run on any data without errors.
Without statistics, your Excel data would just be a sea of columns and rows, swimming with potentially useless words and numbers.
Comparing current values to the same date last year reveals performance trends for products, projects, events, and campaigns. This historical perspective is invaluable for marketing and sales teams.
Percentage Impact on Communication
| Feature | Raw Numbers | Percentage Format |
|---|---|---|
| Survey Agreement | 8 out of 10 people | 80% of people |
| Goal Progress | Need 143 more registrations | 71.4% of goal achieved |
| Risk Reduction | Some disease prevention | 15% risk reduction |
Advanced Averaging Functions
SUMIF and AVERAGEIF
Apply criteria to specify which cells to include in calculations. Example: average income only for people over 40 years old.
SUMIFS and AVERAGEIFS
Use multiple criteria across different ranges for complex data analysis without requiring contiguous cell ranges.
Weighted Averages
Combine SUMPRODUCT and SUM functions to create averages that reflect the relative importance of different values.
Use =SUMPRODUCT(ARRAY1, ARRAY2)/SELECT CELL where Array1 is your data range, Array2 contains the weights, and SELECT CELL is the sum of weights or a cell reference containing that sum.
Key Takeaways



Using our survey example, imagine needing to extract respondent numbers from cells containing "Respondent 01", "Respondent 02", etc. The formula =VALUE(RIGHT(B4,2)) demonstrates powerful function nesting: VALUE converts the extracted text to a usable number, while RIGHT(B4,2) retrieves the rightmost 2 characters from cell B4. For respondent numbers with 3 or 4 digits, you'd adjust the RIGHT function accordingly—RIGHT(B4,4) for 4-digit numbers.
TIP - Notice the " " within =CONCATENATE(B5, " ", C5)—those quotation marks containing a space insert proper spacing between combined elements, producing "James Robinson" instead of "JamesRobinson." This separator technique works with any character: commas for "Robinson, James" format, or hyphens for code combinations.

