DEV Community

Cover image for How Excel is Used in Real-World Data Analysis
Kenan Kubania
Kenan Kubania

Posted on

How Excel is Used in Real-World Data Analysis

Excel is one of the most useful tools for working with data. It helps users organize information, clean messy records, calculate values, and present results in a clear way. During my first week of learning Excel in my Data Science and Analytics course, I started to understand how Excel supports real-world data analysis.

One real-world use of Excel is human resource analysis. The dataset I handled was an HR dirty data file. It included employee identification numbers, names, departments, salaries, hire dates, ages, gender, performance scores, bonuses, training hours, and manager feedback scores. This type of data can help an organization understand employee performance, salary patterns, training needs, and workforce structure.

Excel is also useful in business decision-making. A manager can use Excel to compare departments, check salary totals, identify high-performing employees, and review staff training hours. Sorting helped me arrange values from highest to lowest or alphabetically. Filtering helped me focus on specific departments, employee types, or performance groups. These tools make a large dataset easier to read and understand.

Another important use of Excel is data cleaning. Real-world data is often messy. In the HR dataset, some records had missing values, inconsistent entries, and extra spaces. Cleaning the dataset helped me understand that data analysis does not begin with charts or conclusions. Good analysis starts with preparing clean and reliable data.

Some Excel formulas I practiced include:

=SUM(J2:J100)
Enter fullscreen mode Exit fullscreen mode

I used SUM to calculate totals such as total salaries, total bonuses, or total training hours.

=AVERAGE(I2:I100)
Enter fullscreen mode Exit fullscreen mode

I used AVERAGE to find mean values such as average salary, average age, or average performance score.

=IF(I2>=4,"High Performer","Needs Improvement")
Enter fullscreen mode Exit fullscreen mode

I used IF to classify employees based on a condition, such as whether an employee had a strong performance score.

=COUNTIF(D2:D100,"HR")
Enter fullscreen mode Exit fullscreen mode

I used COUNTIF to count how many employees belonged to a specific department.

=TRIM(B2)
Enter fullscreen mode Exit fullscreen mode

I used TRIM to remove extra spaces from messy text values.

Learning Excel has changed how I see data. Before this week, I saw data as just numbers and text in rows and columns. Now, I understand that data can tell a story when it is cleaned, organized, and analyzed properly. Excel has shown me that even simple formulas and features can support better decisions. As I continue learning data science and analytics, Excel will remain an important foundation for my growth as a future data analyst.

Below is a screenshot of the HR dataset I worked with during my first week. It shows some of the cleaned employee records I used to practice formulas, sorting, filtering, and data cleaning in Excel.

Screenshot of my HR dataset

Top comments (0)