← Learning Hub

Video Resources

How to Use Excel for Data Analysis (Beginner to Advanced Learning Path)

Master Excel from basics to advanced data analysis. Cover formulas, pivot tables, dashboards, and data cleaning with hands-on lessons for analysts.

Frequently Asked Questions

What this playlist answers

18 questions this playlist covers — skim them for a quick takeaway, or dive into the videos above for the full picture.

Data literacy is the ability to read, write, translate, and think about data. It includes understanding charts and dashboards, using tools to analyze and present data, communicating findings clearly, and thinking critically about whether data is trustworthy. The four skills are reading data (interpreting charts, dashboards, and tables), writing data (creating analyses and visualizations with tools like Excel or Python), translating data (communicating findings to non-technical audiences), and thinking about data (asking good questions and applying critical thinking to a dataset). A workbook is the entire Excel file, while a worksheet is a single tab within that file. One workbook can contain many worksheets, each holding its own independent set of data. Typing a dollar sign before a number causes Excel to treat the cell as text instead of a number, which breaks any formula that references it. Enter the raw number only, then apply the Accounting or Currency format separately if you want a dollar sign to display. SUM adds all the values within a specified range, written as =SUM(A1:A10). Use it instead of adding cells manually whenever you need to total a column or row, since it's faster, less error-prone, and easier to update. A relative reference automatically shifts to match a formula's new position when it's copied to another cell. An absolute reference, created by adding a dollar sign before the column letter, row number, or both, stays locked to one specific cell, row, or column no matter where the formula is copied. VLOOKUP searches the first column of a range and can only return a value from a column to its right. INDEX MATCH has no such restriction — it can return a value from any column in a table regardless of position, and is generally more robust when a table's columns get reordered. COUNTIF counts rows that meet a single condition. COUNTIFS counts rows that meet two or more conditions at once, returning a count only when every condition is satisfied. The same distinction applies to SUMIF/SUMIFS and AVERAGEIF/AVERAGEIFS. LEFT extracts a set number of characters starting from the beginning of a text string, and RIGHT does the same starting from the end. MID extracts characters from any position, given a starting point and a character count. All three count spaces as characters. TRIM removes leading, trailing, and extra internal spaces from a text string, leaving single spaces between words. It's especially useful for data copied from other systems or surveys, where invisible double spaces often cause matching and sorting errors. Select your data, go to Insert and click Pivot Table, then choose where to place it. Drag fields into the Rows, Columns, Values, and Filters zones to summarize the data — for example, dragging a category into Rows and a numeric field into Values instantly produces totals for each category. A slicer is a visual panel of clickable buttons that filters a pivot table and its charts interactively and stays visible at all times. Unlike a column filter dropdown, it requires just a click or drag to apply and makes the current selection immediately obvious — useful for reports other people will explore. Bar height is read as proportional to the underlying value, so an axis that starts above zero exaggerates differences between bars and can make large quantities look negligible. The only valid exception is a chart with a meaningful non-zero threshold, such as the freezing point on a temperature chart, clearly labeled as such. Use a bar chart when the goal is comparing individual category values against each other. Use a pie chart when the goal is showing how each category relates to the whole — pie charts work best with four or fewer categories, since more than that makes the slices too small to interpret reliably. No. Correlation measures statistical association, not causation. Two variables can be strongly correlated by coincidence or because both are influenced by a separate, unmeasured factor, so establishing causation requires evidence beyond a correlation coefficient or scatter plot. The mean is the arithmetic average of all values; the median is the middle value once the data is sorted. The mean works well for roughly symmetric data without outliers, while the median is the better choice for skewed data, since extreme values pull the mean away from what's typical without affecting the median. Divide the count of records meeting the condition by the total count of records in the relevant group. In Excel, COUNTIFS can calculate both the numerator and the denominator — for example, dividing the count of smokers in a region by the total count of people in that region gives the probability that a randomly selected resident is a smoker. Divide the one-time upfront cost of an investment by the net recurring saving per period. For example, if a machine costs $5,540 and saves $164.63 per week, dividing one by the other gives roughly 33.7 weeks — always round up, since rounding down would report a break-even point before the cost is fully recovered.