Learn Microsoft Excel easily from the very first step to Power Query, DAX, and dashboards. Find every topic, function, and shortcut in one simple place.
A1
Introduction to Excel
What is Excel?
Microsoft Excel is a software program that arranges data into a grid of rows and columns. The box where a row and a column meet is called a cell. Each cell can hold text, a number, a date, or a formula. The best feature of Excel is that cells can connect to each other. If you change a number in one cell, all the related formulas update automatically. This automatic recalculation makes a spreadsheet much better than a simple table or document.
Who created Excel, and when?
Microsoft created Excel and first released it in 1985 for Apple Macintosh computers. The Windows version came out in 1987. Microsoft built Excel to compete with the most popular spreadsheet tool at that time, Lotus 1-2-3. Soon, Excel became more popular than Lotus 1-2-3 and became the standard tool for businesses, schools, and offices worldwide.
Major version milestones
Version
Year
New Feature Added
Excel 2.0 (Windows)
1987
First version for Windows
Excel 97
1997
VBA editor and new menu system
Excel 2007
2007
Ribbon toolbar, .xlsx files, and 1 million+ rows
Excel 2010
2010
Sparklines, Slicers, and PowerPivot tool
Excel 2016
2016
Built-in Power Query and new charts
Excel 2019 / 365
2018–present
Dynamic arrays, XLOOKUP, LET, and live teamwork
Why learn Excel
It is the most common skill asked for in job postings for finance, operations, HR, marketing, and data roles.
It helps you turn raw data into clear choices (using sums, trends, and totals) without writing hard code.
It is the first step to learning advanced data analysis tools like Power BI, which uses the same system (Power Query, Power Pivot, DAX).
Advantages
Available on almost all office computers and easy to learn
Very flexible — works for simple lists or large financial reports
Has a huge list of built-in functions and automated tools (VBA)
Easy to share as a single file with others
Disadvantages
Not made for many people to edit at the exact same time at a very large scale
Manual work can lead to mistakes (a wrong cell reference can ruin a report)
It has a row limit (1,048,576), so it cannot hold extremely huge data
Can create confusion with too many file copies (like "final_v3_FINAL.xlsx")
Career scope
Knowing Excel helps you get jobs like MIS Executive, Data Analyst, Financial Analyst, Business Analyst, Accountant, and Operations Analyst. Advanced Excel skills are also the easiest way to learn Power BI and start a career in Business Intelligence (BI).
Excel can be used in any field. The same simple grid adapts easily to different kinds of tracking and data analysis. Here is how different industries use it every day:
Attendance sheets that change color automatically for missing employees
Inventory & Supply Chain
Stock levels, ordering new items
Stock dashboard that alerts you when items are running low
Sales & Marketing
Tracking deals, marketing results
Pivot tables to see total sales by region and salesperson
Banking
Loan details, interest calculations
Loan repayment schedule made with PMT, IPMT, and PPMT functions
Healthcare
Patient visits, tracking medical tools
Hospital bed tracker that shows empty beds using colors
Manufacturing
Factory planning, product quality logs
Defect tracker dashboard using control charts
Government
Budget handling, public data tables
Department reports showing how budget money is spent
Education
Teacher gradebooks, student results
Student report cards using AVERAGEIFS and rank formulas
A3
The Excel Interface
Before learning formulas, it is important to know the names of the different parts of the screen. This makes tutorials much easier to follow.
Quick Access Toolbar · Title Bar
Ribbon (Tabs → Groups → Commands)
Name Boxfx Formula Bar
Worksheet Grid (Rows × Columns × Cells)
Sheet Tabs
Status Bar · Zoom Slider
Part of Screen
What it does
Ribbon
The main menu bar at the top. It has Tabs (Home, Insert, etc.) that hold groups of related buttons.
Quick Access Toolbar
A small bar at the top-left for your favorite tools, like Save, Undo, and Redo.
Name Box
Shows the address of the cell you selected (like B4). You can also type a cell address here to jump to it.
Formula Bar
Shows and lets you edit the actual formula or value inside the selected cell.
Worksheet
The single grid page made of rows and columns. It is just one page inside a workbook file.
Workbook
The whole Excel file (.xlsx) which contains one or many worksheets.
Sheet Tabs
The small tabs at the bottom used to add, rename, color, or switch between pages.
Status Bar
The bottom strip that shows quick totals (Sum, Average, Count) when you select numbers, plus zoom controls.
A4
Basic Concepts
Term
Meaning
Cell
A single box formed where a column and row meet (e.g., C5).
Range
A group of multiple cells selected together (e.g., C5:C10).
Active cell
The cell you have currently selected and are typing in.
Relative reference
A1 — Changes automatically when you copy a formula to other cells.
Absolute reference
$A$1 — Stays completely locked and does not change when copied.
Mixed reference
$A1 or A$1 — Locks only the column or only the row.
Fill handle
The small square at the bottom-right corner of a selected cell. Drag it to copy formulas or data.
AutoFill
Excel's ability to complete a pattern (like Jan, Feb, Mar... or 1, 2, 3...) when you drag the fill handle.
Simple Example: In a price sheet, a tax formula like =B2*$E$1 (with tax rate locked in E1) can be dragged down safely. The B2 will change for each row, but $E$1 will stay locked.
A5
Navigation
Ctrl + Arrow Key — Instantly jump to the very edge of your data block.
Ctrl + Home / End — Jump straight to the first cell (A1) or the last used cell of the page.
Ctrl + F (Find) and Ctrl + H (Replace) — Find specific words/numbers or change them in bulk.
F5 / Ctrl + G (Go To) — Jump directly to a cell address. The "Go To Special" button helps select only blank cells or cells with formulas.
Name Box — Type a cell location here and hit Enter to go there instantly.
B1
Data Entry & Data Types
Excel automatically guesses what kind of data you are typing. It aligns text to the left and numbers to the right by default.
Data Type
What You Type
How Excel Displays It
Text
Invoice
Invoice
Number
2500
2500
Currency
2500 → apply format
$2,500.00
Percentage
0.18 → apply format
18%
Date
7/7/2026
07-Jul-2026
Time
14:30
2:30 PM
Scientific
1500000 → apply format
1.50E+06
Custom
0.00" kg"
45.20 kg
B2
Formatting
Formatting only changes how data looks on the screen, not its actual value. For example, a cell showing "18%" still stores the value 0.18 inside.
Conditional Formatting
This changes a cell's color automatically based on a rule you set. Example: Go to Home → Conditional Formatting → Highlight Cell Rules → Greater Than to highlight high sales numbers, or use a custom formula like =$D2<$C2 to highlight rows that are under budget.
Data Bars — Adds a colored bar inside the cell. The bigger the number, the longer the bar.
Color Scales — Uses color shades (like green to red) to highlight high and low numbers.
Icon Sets — Adds arrows or traffic lights to show if numbers meet your target thresholds.
B3
Formulas
Formula basics
Every formula must start with an equals sign (=). Excel calculates the mathematical operators and functions, showing the result in the cell while hiding the formula in the background.
Operator priority (Order of Operations)
Parentheses ()
Exponents ^
Multiplication and Division * / (calculated left to right)
Addition and Subtraction + - (calculated left to right)
Text joining &
Comparisons = < > <= >= <>
Typing =10+2*5 gives an answer of 20 (not 60), because Excel multiplies before adding.
Common mistakes to avoid
Forgetting to lock a cell reference with $ before dragging a formula down many rows.
Mismatched parentheses — Missing a closing bracket ) when nesting multiple functions.
Mixing text strings and numbers without using the & sign, which causes a #VALUE! error.
Selecting whole columns (like A:A) without a reason, which can make large files run very slowly.
B4
Functions Library
Functions are sorted by categories below. Each entry explains its Purpose, Syntax (how to write it), Arguments, an Example, Output, common Errors, and a practice tip.
SUMIFSMath
Purpose: Adds numbers together if they meet one or more conditions.
Purpose: Calculates the fixed monthly payment amount for a loan with a set interest rate.
Syntax:=PMT(rate, nper, pv)
Example:=PMT(7%/12, 60, -500000) → Calculates the monthly EMI for a 5-year loan.
Tip: Type the loan amount (pv) as a negative number so the formula output shows up as a clean positive number.
Related: IPMT, PPMT, RATE, NPER
FILTERDynamic Array
Purpose: Pulls out all data rows that match a rule and lists them automatically across multiple rows.
Syntax:=FILTER(array, include, [if_empty])
Example:=FILTER(A2:D200, C2:C200="North", "No matches")
Common errors: Shows a #SPILL! error if other data blocks the new list from expanding downward.
Related: SORT, UNIQUE, LET
ISNUMBER / ISTEXT / ISBLANKInformation
Purpose: Checks what kind of data is inside a cell and answers with a clear TRUE or FALSE.
Example:=ISBLANK(A2) helps check for empty cells before running formulas on a column.
Related: ISERROR, ISNA, TYPE
B5
Charts
Chart Type
Best Used For
When To Avoid
Column / Bar
Comparing different categories
When you have too many items (>10) — it looks crowded
Line
Showing trends over time (months/years)
Comparing separate, unrelated items
Pie
Showing parts of a whole (use ≤5 slices)
When there are too many slices or negative numbers
Scatter
Showing relationships between two sets of numbers
When using non-numeric text categories
Combo (Line + Column)
Showing two metrics with different scales (e.g., Revenue vs. Profit %)
When both lines already use the exact same scale range
Waterfall
Showing positive and negative changes in a sequence (like cash flow)
For simple lists that are not in a specific order
Best practice tip: Always start the Y-axis at zero for column and bar charts so you do not distort differences. Make sure to add labels to axes and units.
C1
Excel Tables
Select your data cells and press Ctrl + T to turn them into an official Excel Table. Tables expand automatically when you type new rows at the bottom. They use clean structured references like =SUM(Sales[Amount]) instead of standard cell addresses, and update charts or PivotTables instantly.
Formulas fill down the entire column automatically when a new row is added.
The main header row stays locked at the top while scrolling, without needing Freeze Panes.
Includes built-in color styling and a quick Total Row with easy summary math dropdowns.
C2
Sorting & Filtering
Basic Sort: Go to Data → Sort A→Z or Z→A to organize a single column quickly.
Multi-Level Sort: Go to Data → Sort → Add Level. For example, sort by Region first, then sort by highest Sales inside each region.
Custom Sort: Sort by a unique order you define (like Small, Medium, Large) instead of basic alphabetical order.
AutoFilter: The drop-down filter arrows on top of columns used to pick specific items to display.
Advanced Filter: Filters data in its current place or copies matching rows to a new spot using separate criteria rules. Supports OR logic across columns.
C3
Data Validation
Go to Data → Data Validation to restrict what data users can type into a cell. This stops typos and bad data before it entry time, saving you cleanup work later.
Drop-Down List: Choose "List", then pick a range of cells or type items separated by commas.
Date Rules: Choose "Date" and set a minimum or maximum range (like blocking future dates).
Number Rules: Choose "Whole Number" or "Decimal" to force entries to stay within fixed boundaries.
Custom Formulas: Use a rule like =COUNTIF($A$2:$A$100,A2)=1 to stop users from entering duplicate values.
Dependent Drop-Downs: A dynamic system where choices in the second drop-down change automatically based on what you picked in the first one. Built using INDIRECT and named ranges.
C4
Pivot Tables
A PivotTable summarizes massive lists of data instantly. You drag data fields into four simple zones: Rows, Columns, Values, and Filters. The table updates immediately when your data source changes.
Feature
What it is used for
PivotChart
A visual chart connected directly to a PivotTable's live summary
Slicer
Visual buttons you can click to filter data instantly
Timeline
A clean filtering slider bar made specifically for dates
Calculated Field
Creating a new field inside the pivot table using simple math (e.g., Profit = Revenue − Cost)
Simple Example: To see total sales sorted by region and quarter, drag Region into Rows, Quarter into Columns, and Sales into Values (set to Sum).
C5
Dashboards
A good Excel dashboard fits onto a single screen view and answers important business questions instantly. Common components include:
KPI Cards — Large single numbers showing big values (like Total Revenue or conversion rates) along with trend arrows.
Interactive Charts connected to slicers, so clicking one button updates all graphics at the same time.
Dynamic Titles that change using formulas, like ="Sales Dashboard – "&TEXT(TODAY(),"mmmm yyyy").
D1
Data Analysis (What-If Tools)
Goal Seek — Works backward to find inputs: "What sales number do I need to reach my profit goal?"
Scenario Manager — Lets you save and easily switch between different business assumptions (like Best Case or Worst Case).
Solver — A built-in add-in tool that finds the best business answers based on fixed limits (like maximizing profit with a fixed team size).
Forecast Sheet — Creates a quick trend line into the future using historical timeline data.
D2
Power Query
Power Query (found under Data → Get & Transform) is Excel's data cleaning tool. It connects to a source file, records your step-by-step cleaning edits, and imports the clean data. You can rerun the whole cleanup later with a single click.
Import: Pull data from CSV files, folders, databases, or public websites.
Transform: Remove junk columns, split text blocks apart, change data types, or unpivot data.
Merge: Connect two separate tables together like a repeatable VLOOKUP.
Append: Stack multiple data tables with matching columns directly on top of each other into one big list.
Clean: Trim empty spaces, fix uppercase text, and clear out duplicate rows as saved steps you can edit anytime.
D3
Power Pivot
Power Pivot links multiple separate data tables together using **relationships** (like a relational database system). This lets you build a single PivotTable that summarizes across tables without merging them with a giant VLOOKUP formula.
Measures are calculated data fields written in **DAX** (Data Analysis Expressions) language, like Total Sales := SUM(Sales[Amount]). They calculate correctly no matter how you filter or slice the PivotTable. This is the exact same engine used inside Power BI.
D4
Macros & VBA
Record Macro: (On the Developer tab) Automatically saves your clicks and typing into reusable VBA code scripts.
Edit VBA: Press Alt + F11 to open the code editor window to tweak recorded actions or write code scripts from scratch.
Run Macro: Press Alt + F8 or click a custom button to run your automation script.
Security Info: Macros from the internet can have unsafe code. Excel turns them off by default. Only run macros from people or files you trust.
D5
Printing
Print Area: Go to Page Layout → Print Area → Set to print only your selected cells instead of the whole page.
Margins & Scaling: Choose "Fit Sheet on One Page" to shrink large tables onto a single piece of paper safely.
Headers/Footers: Add automatic page numbers, file names, or dates to the top or bottom of every printed sheet.
Print Titles: Repeats the top header row on every printed page automatically for long tables.
E1
Sharing & Protection
Protect Sheet: Locks specified cells so other users cannot overwrite formulas, while still letting them sort or filter.
Protect Workbook: Stops other users from adding new sheets, deleting pages, or rearranging tabs.
File Passwords: Go to File → Info → Protect Workbook → Encrypt with Password to keep data locked safely.
Comments/Notes: Add floating note cards to specific cells to add context without changing cell data.
Co-Authoring: Save files on OneDrive or SharePoint to let multiple teammates edit the sheet at the exact same time.
E2
Excel Errors
#VALUE!
Cause: Using the wrong data type inside a formula, like trying to add text to a standard number.
Solution: Use the VALUE() function or check for text hidden inside your number columns.
Example:="5"+"apple" → results in #VALUE!
#REF!
Cause: A formula points to a cell, row, or column that was completely deleted from the sheet.
Solution: Press Undo (Ctrl + Z) immediately or fix the broken cell links manually.
Example: Deleting Column B when a formula reads =B2*2.
#DIV/0!
Cause: Trying to divide a number by zero or by a completely blank cell.
Solution: Wrap your formula inside an IFERROR function or pre-check the cell with an IF statement.
Example:=10/0
#NAME?
Cause: A typo in a function name or using an undefined named range label.
Solution: Check for typos in your formula spelling, or verify labels inside the Name Manager tool.
Example:=SUMM(A1:A10)
#NUM!
Cause: Using an impossible mathematical number argument, like a negative value inside a SQRT function.
Solution: Fix your input values before running the mathematical calculation.
Example:=SQRT(-9)
#N/A
Cause: A lookup formula could not find any match for your search term.
Solution: Confirm the search item exists and check that data types match (text vs number), or wrap it with IFNA.
Example:=VLOOKUP("Z999",A:B,2,0) when "Z999" does not exist anywhere.
#SPILL!
Cause: A new dynamic array formula is blocked from listing out results because old data is in its path.
Solution: Clear out the blocking cells below the formula or move the formula to an empty row.
Example:=UNIQUE(A1:A20) when cell B1 already has typed content.
Circular Reference
Cause: A formula points back to its own cell address directly or through a loop chain.
Solution: Go to Formulas → Error Checking → Circular References to find the loop and redesign the calculation path.
Example: Cell A1 contains the formula =A1+1.
E3
Keyboard Shortcuts
Editing
Ctrl+Z Undo
Ctrl+Y Redo
Ctrl+X/C/V Cut / Copy / Paste
Delete Clear cell content
F2 Edit active cell
Formatting
Ctrl+B/I/U Bold / Italic / Underline
Ctrl+1 Open Format Cells window
Ctrl+Shift+% Apply percentage format
Ctrl+Shift+$ Apply currency format
Navigation
Ctrl+Home Go directly to A1
Ctrl+End Go to the last used cell
Ctrl+Arrow Jump to the edge of data block
Page Up/Down Scroll up or down one screen view
Selection
Ctrl+A Select all cells
Ctrl+Shift+Arrow Select cells to the data edge
Shift+Space Select the entire row
Ctrl+Space Select the entire column
Formula
= Start writing a formula
F4 Switch relative/absolute locking
Ctrl+` Show formulas on the grid screen
Alt+= AutoSum shortcut
Charts
Alt+F1 Create chart on the same sheet
F11 Create chart on a separate sheet
Workbook
Ctrl+N Open new blank workbook file
Ctrl+S Save current file
Ctrl+Tab Switch open workbooks
Ctrl+PageDown/Up Switch spreadsheet tabs
Printing
Ctrl+P Print shortcut
Data
Ctrl+T Turn cells into an official Table
Ctrl+Shift+L Turn filter arrows on or off
Alt+D+P Open PivotTable wizard tool
Developer
Alt+F11 Open VBA code window
Alt+F8 Open Macro options list
E4
Interview Questions
Beginner
A Workbook is the complete Excel file. A Worksheet is a single spreadsheet page or tab inside that file. A single workbook file can have many worksheets inside.
A relative cell link (A1) changes position automatically when dragged to new cells. An absolute link ($A$1) stays completely locked to that spot. Press F4 to switch them.
Select the row directly below your main headers, then click View → Freeze Panes → Freeze Panes. This keeps header rows visible while scrolling down deep lists.
Intermediate
VLOOKUP only searches from left to right and breaks if columns are inserted. INDEX/MATCH (and XLOOKUP) can look left or right safely and does not break when rows or columns change.
Select data → click Data → Remove Duplicates, then select column checkboxes. To check duplicates safely without deleting them, use a COUNTIF formula first.
It lets you reorganize, group, and summarize huge lists of data dynamically by dragging fields around, without needing to write new formulas for each view.
Advanced
Power Query records a set sequence of cleaning steps connected to your source files. Refreshing the tool runs the whole cleanup automatically on new data. Formulas must be dragged manually every time.
A DAX measure calculates values dynamically on the fly based on how you filter or slice your PivotTable. A calculated column calculates values row-by-row once and stores them inside the file model permanently.
Scenario Based
Use Power Query to import data from a folder, append files together into one master table, clean the columns, load them to the Data Model, and create a PivotTable report on top. Refreshing the report imports new files automatically.
Check if a row, column, or tab page referenced by the formula was deleted. Check the formula bar text to see which cell link broke, then link it again or restore an old version copy.
E5
Practice Files
Download sample data files to practice your skills. (These buttons are placeholders for your actual download links.)
F1
Projects
Build these end-to-end projects to move from basic formulas to building full workbooks:
Attendance System
Use drop-down menus for daily tracking, COUNTIFS for totals, and colors for missing employees.
Payroll Sheet
Calculate base pay, deductions, and tax tax slabs using nested IF or IFS functions.
Billing System
Create invoice lines with item prices using VLOOKUP, plus automatic tax and final totals calculations.
Sales Dashboard
Build PivotTables, slick visual slicer buttons, and main KPI cards from raw transaction lists.
Inventory Tracker
Set up automatic reorder alerts using IF rules, data check validations, and text colors.
Expense Tracker
Build category-wise summaries using SUMIFS combined with monthly spending trend charts.
Loan Calculator
Create full amortization plans with PMT/IPMT/PPMT functions and try Goal Seek target rules.
Business Dashboard
Learn to pull data with Power Query, connect tables in Power Pivot, and use DAX metrics formulas.
F2
Tips & Tricks
Flash Fill: (Ctrl + E) Excel spots your pattern from one typed example and fills the rest automatically (like splitting full names into first/last columns).
Double-Click Fill Handle: Double-click the tiny corner box to run a formula all the way down to match the adjacent data rows instantly.
Ctrl + Enter: Select multiple cells, type data or formula, and hit Ctrl + Enter to fill all of them at the exact same time.
Alt + Enter: Inserts a clean line break to type text on a new line inside a single cell box.
Paste Special as Values: Clears out underlying formulas while permanently saving the final calculated numbers inside cells.
Watch Window: (On the Formulas tab) Keeps a floating view block on an important cell's values even when you scroll away.
F3
Excel vs. Google Sheets
Feature
Microsoft Excel
Google Sheets
Live Teamwork
Good (using OneDrive cloud paths)
Excellent, built directly for browsers
Offline Work
Excellent offline desktop features
Limited unless configured first
Function Depth & Coding
Extremely deep features, uses VBA scripts
Lighter, uses JavaScript Apps Scripts
Handling Massive Data
Very fast handling large file grids
Runs slowly on very large files
Cost
Paid pricing models (Office 365)
Free access with standard Google accounts
Power Query / Pivot Models
Fully built-in tools
Not available as native tools
Which one to use: Choose Microsoft Excel for deep financial modeling, massive files, or complex data query cleanup tasks. Choose Google Sheets for live online teamwork with multiple users editing from basic browsers instantly.
F4
Frequently Asked Questions
.xlsx (standard file), .xlsm (macro files), .xlsb (binary format for fast loading), and .xls (old legacy format from Excel 97–2003).
Every worksheet has a limit of 1,048,576 rows and 16,384 columns (ending at column label XFD).
Select cell box B2, then go to View → Freeze Panes → Freeze Panes. All rows above and columns to the left stay locked while you scroll.
COUNT only counts cells that have standard numbers. COUNTA counts any cell that is not blank, including text entries.
Select your cells → click Home → Merge & Center. Note: This action only keeps the top-left data value and can make sorting your columns harder later.
Select column data → click Data → Text to Columns → select Delimited option to split terms like "City, State" into separate cells automatically.
A named range assigns a clear readable label to cell blocks (like "TaxRate" instead of $E$1). This makes your calculation paths much easier to read and troubleshoot.
Select cells you want users to edit → click Format Cells → Protection tab → uncheck Locked box, then activate Review → Protect Sheet. Only your unlocked cells remain editable.
This happens if the cell category was set to Text before you typed the formula. Change formatting to General or Number and hit Enter inside the formula bar again.
A formula is any calculation path starting with a "=" sign. A function (like SUM, IF, VLOOKUP) is a pre-made tool built into Excel to use inside a formula block.
Select data → click Data → Remove Duplicates, then pick which target columns must match to count a row as a double entry.
It locks a cell link position so it does not shift when dragging formulas. Using $A$1 locks both the row and column lines securely.
Go to Data → Data Validation → change Allow rule to List → type your options with commas or select a source cell list range.
Excel converts all dates into sequential serial count numbers starting from Jan 1, 1900. Simply choose Date format (Ctrl + 1 → Number → Date) to fix it.
Click the blank cell below your column numbers and press Alt + = (AutoSum shortcut), or select values and check totals in the Status Bar.
Use a search rule like =COUNTIF(List2,A2)=0 to highlight items on List1 that are missing from List2, or highlight them using color formatting rules.
It summarizes and groups large data structures interactively without writing individual formulas for every view.
Go to File → Info → Protect Workbook → Encrypt with Password, then type and confirm a secure password.
Yes, if the file is saved on OneDrive or SharePoint cloud paths and both users open it via desktop app or Excel Online (Co-Authoring feature).
SUBTOTAL can ignore rows hidden by dropdown filters or manual actions, whereas SUM always calculates every cell inside the target range row group.
The column width is too small to show your data values. Double-click the top header column dividing line to auto-fit cell space.
Select cell areas and press Ctrl + T shortcuts, or go to Insert → Table button paths.
AND answers TRUE only if every single rule inside is met. OR answers TRUE if at least one rule inside is met.
Go to Developer tab → click Insert → choose Checkbox under Form Controls, then link it to an active cell to output TRUE/FALSE results.
Click an active cell inside your main column and hit Ctrl + Down Arrow shortcuts together.
Convert your raw dataset into an official Excel Table (Ctrl + T) before inserting charts. The source range expands automatically when new rows are added.
.xlsx files store formulas, formatting, macros, and multiple tabs. .csv files are plain text files containing basic values split by commas — no formats or calculations saved.
Go to File → Info → Manage Workbook → click Recover Unsaved Workbooks option to view the AutoRecover file system cache.
IFERROR masks any calculation error code. IFNA only catches #N/A lookup errors, leaving system breaks like #REF! visible for debugging checks.
Go to Format Cells → click Number tab → choose Custom rules, and use code setups like 0;[Red]-0.
A sparkline is a micro trend graphic built inside a single cell block for quick inline views. Charts are separate floating visual objects.
Go to View → click Split option. This splits your screen grid so you can look at two distant sections of the same page side by side.
Use the COUNTIF function for a single tracking rule (e.g., =COUNTIF(A:A,"Completed")), or use COUNTIFS for tracking multiple conditions.
Formulas pointing to old sheets via typed text (like inside INDIRECT) will not change automatically. Standard direct cell links update on their own.
Format your first cell box perfectly, click the Format Painter paintbrush button (on Home tab), and highlight other cells to match.
Change cell category to Text before you type values, or start your entry with a single quote character (').
Save updates your existing file copy in its place. Save As copies contents into a brand new file with a new name, format type, or storage directory folder.
The formula setup =DATEDIF(BirthDate, TODAY(), "y") gives you the number of full completed years.
Yes. Go to Data → Get Data → From Database to pull data tables using Power Query connection paths.
This FAQ set is intentionally structured to keep growing — add new .acc-item blocks in the same format to reach 100+.
F5
Learning Roadmap
Beginner: Screen layout basics, simple formulas, formatting cells, data entry, and sorting/filtering.
Intermediate: Advanced lookups, conditional rules (IFS), PivotTable summaries, chart generation, and data validations.
Advanced: Power Query tools, dynamic array formulas, interactive dashboards, and macro automation scripts.
Expert: Data models in Power Pivot, DAX expressions, complex custom VBA coding, and system model audits.
Path: Data Analyst
Master basic formulas → PivotTables → Power Query cleanup → Power Pivot/DAX metrics → Power BI systems.