A1 · Knowledge Hub

Excel Complete
Knowledge Hub

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

VersionYearNew Feature Added
Excel 2.0 (Windows)1987First version for Windows
Excel 971997VBA editor and new menu system
Excel 20072007Ribbon toolbar, .xlsx files, and 1 million+ rows
Excel 20102010Sparklines, Slicers, and PowerPivot tool
Excel 20162016Built-in Power Query and new charts
Excel 2019 / 3652018–presentDynamic 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).

Related: Learning Roadmap →

A2

Excel Uses Across Industries

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:

IndustryCommon UseReal-World Example
Accounting & FinanceTracking money, matching accounts, financial modelsMonthly profit reports made with the SUMIFS function
HR (Human Resources)Employee attendance, monthly payroll, leave trackingAttendance sheets that change color automatically for missing employees
Inventory & Supply ChainStock levels, ordering new itemsStock dashboard that alerts you when items are running low
Sales & MarketingTracking deals, marketing resultsPivot tables to see total sales by region and salesperson
BankingLoan details, interest calculationsLoan repayment schedule made with PMT, IPMT, and PPMT functions
HealthcarePatient visits, tracking medical toolsHospital bed tracker that shows empty beds using colors
ManufacturingFactory planning, product quality logsDefect tracker dashboard using control charts
GovernmentBudget handling, public data tablesDepartment reports showing how budget money is spent
EducationTeacher gradebooks, student resultsStudent 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.

Part of ScreenWhat it does
RibbonThe main menu bar at the top. It has Tabs (Home, Insert, etc.) that hold groups of related buttons.
Quick Access ToolbarA small bar at the top-left for your favorite tools, like Save, Undo, and Redo.
Name BoxShows the address of the cell you selected (like B4). You can also type a cell address here to jump to it.
Formula BarShows and lets you edit the actual formula or value inside the selected cell.
WorksheetThe single grid page made of rows and columns. It is just one page inside a workbook file.
WorkbookThe whole Excel file (.xlsx) which contains one or many worksheets.
Sheet TabsThe small tabs at the bottom used to add, rename, color, or switch between pages.
Status BarThe bottom strip that shows quick totals (Sum, Average, Count) when you select numbers, plus zoom controls.
A4

Basic Concepts

TermMeaning
CellA single box formed where a column and row meet (e.g., C5).
RangeA group of multiple cells selected together (e.g., C5:C10).
Active cellThe cell you have currently selected and are typing in.
Relative referenceA1 — 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 handleThe small square at the bottom-right corner of a selected cell. Drag it to copy formulas or data.
AutoFillExcel'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 TypeWhat You TypeHow Excel Displays It
TextInvoiceInvoice
Number25002500
Currency2500 → apply format$2,500.00
Percentage0.18 → apply format18%
Date7/7/202607-Jul-2026
Time14:302:30 PM
Scientific1500000 → apply format1.50E+06
Custom0.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)

  1. Parentheses ()
  2. Exponents ^
  3. Multiplication and Division * / (calculated left to right)
  4. Addition and Subtraction + - (calculated left to right)
  5. Text joining &
  6. 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.

SUMIFS Math

Purpose: Adds numbers together if they meet one or more conditions.

Syntax: =SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)

Arguments: sum_range (the numbers to add), criteria_range/criteria pairs (the rules to check).

Example: =SUMIFS(D2:D200, A2:A200, "North", C2:C200, "2026")

Output: Total sales for the North region specifically in the year 2026.

Common errors: If your ranges are not the exact same size, you will get a #VALUE! error.

Tip: Always lock ranges with $ signs if you plan to copy the formula to other cells.

Related: SUMIF, COUNTIFS, AVERAGEIFS

Practice: Add up "Expenses" where the Department is "HR" and Month is "June".

ROUND Math

Purpose: Rounds a number to a chosen amount of decimal places.

Syntax: =ROUND(number, num_digits)

Example: =ROUND(482.657, 2)482.66

Tip: Use a negative number for digits to round to the nearest tens or hundreds, like =ROUND(482,-2) → 500.

Related: ROUNDUP, ROUNDDOWN, MROUND

IF Logical

Purpose: Gives one answer if a condition is true, and a different answer if it is false.

Syntax: =IF(logical_test, value_if_true, value_if_false)

Example: =IF(B2>=50,"Pass","Fail")

Output: Shows "Pass" if B2 is 50 or more, otherwise shows "Fail".

Common errors: Forgetting a comma or a closing bracket will cause a formula error.

Tip: Do not mix too many IF statements together. For 3 or more rules, use the IFS function instead.

Related: IFS, IFERROR, AND, OR

Practice: Show "Senior" if experience is 5 years or more, else show "Junior".

IFERROR Logical

Purpose: Catches formulas that result in an error and replaces the error with a clean text or number.

Syntax: =IFERROR(value, value_if_error)

Example: =IFERROR(VLOOKUP(A2,Prices,2,0),"Not found")

Tip: Use this to hide ugly error codes from reports before sharing files with managers.

Related: IFNA, IF

XLOOKUP Lookup

Purpose: Searches for a value in one column and returns a matching value from another column in any direction.

Syntax: =XLOOKUP(lookup_value, lookup_array, return_array, [if_not_found], [match_mode], [search_mode])

Example: =XLOOKUP(A2, ProductID, ProductPrice, "Not found")

Output: The price matching the Product ID in cell A2, or the text "Not found" if it does not exist.

Common errors: Shows #N/A if the item is missing and you did not set a custom 'if_not_found' message.

Tip: It is much better than VLOOKUP because it can look left and does not break when you insert new columns.

Related: VLOOKUP, INDEX/MATCH, LOOKUP

Practice: Find an employee's department using an ID column that is placed on the right side of the Department column.

INDEX / MATCH Lookup

Purpose: A powerful formula duo where MATCH finds the position number of an item, and INDEX extracts the value from that position.

Syntax: =INDEX(return_range, MATCH(lookup_value, lookup_range, 0))

Example: =INDEX(C2:C200, MATCH(A2, B2:B200, 0))

Tip: This was the standard method to look left or search using multiple rules before XLOOKUP was created.

Related: XLOOKUP, VLOOKUP

VLOOKUP Lookup

Purpose: Looks for an item in the very first column of a table and moves right to return a value from a specified column number.

Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

Example: =VLOOKUP(A2, $D$2:$F$100, 3, FALSE)

Common errors: Forgetting to use FALSE (or 0) at the end will make it search for a close match, which can give wrong answers on unsorted lists.

Tip: Always use FALSE or 0 at the end for an exact match search.

Related: HLOOKUP, XLOOKUP, INDEX/MATCH

TEXTJOIN Text

Purpose: Connects text from multiple cells together using a delimiter (like a comma or space) and skips empty cells.

Syntax: =TEXTJOIN(delimiter, ignore_empty, text1, [text2]...)

Example: =TEXTJOIN(", ", TRUE, A2:A5)

Output: "Delhi, Mumbai, Pune" (automatically leaves out empty cells).

Related: CONCAT, & operator

LEFT / RIGHT / MID Text

Purpose: Extracts a chosen number of characters from the start, end, or middle of a text string.

Syntax: =LEFT(text,n), =RIGHT(text,n), =MID(text,start,n)

Example: =MID("INV-2026-045",5,4)2026

Related: FIND, SEARCH, LEN

DATEDIF Date

Purpose: Calculates the exact time gap between two dates in total Years, Months, or Days.

Syntax: =DATEDIF(start_date, end_date, unit) — choose units: "y" for years, "m" for months, "d" for days.

Example: =DATEDIF(A2, TODAY(), "y") → Calculates a person's age in completed years.

Tip: Excel hides this function from its auto-complete formula list, but it works perfectly. Type it out manually.

Related: TODAY, EDATE, NETWORKDAYS

AVERAGEIFS Statistical

Purpose: Finds the average of numbers that match multiple specific conditions.

Syntax: =AVERAGEIFS(avg_range, criteria_range1, criteria1, ...)

Example: =AVERAGEIFS(Score, Subject,"Math", Term,"Final")

Related: AVERAGEIF, SUMIFS, COUNTIFS

PMT Financial

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

FILTER Dynamic 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 / ISBLANK Information

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 TypeBest Used ForWhen To Avoid
Column / BarComparing different categoriesWhen you have too many items (>10) — it looks crowded
LineShowing trends over time (months/years)Comparing separate, unrelated items
PieShowing parts of a whole (use ≤5 slices)When there are too many slices or negative numbers
ScatterShowing relationships between two sets of numbersWhen 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
WaterfallShowing 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.

FeatureWhat it is used for
PivotChartA visual chart connected directly to a PivotTable's live summary
SlicerVisual buttons you can click to filter data instantly
TimelineA clean filtering slider bar made specifically for dates
Calculated FieldCreating 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

FeatureMicrosoft ExcelGoogle Sheets
Live TeamworkGood (using OneDrive cloud paths)Excellent, built directly for browsers
Offline WorkExcellent offline desktop featuresLimited unless configured first
Function Depth & CodingExtremely deep features, uses VBA scriptsLighter, uses JavaScript Apps Scripts
Handling Massive DataVery fast handling large file gridsRuns slowly on very large files
CostPaid pricing models (Office 365)Free access with standard Google accounts
Power Query / Pivot ModelsFully built-in toolsNot 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.

Select range rows → click Conditional Formatting → Highlight Cell Rules → Duplicate Values.

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

  1. Beginner: Screen layout basics, simple formulas, formatting cells, data entry, and sorting/filtering.
  2. Intermediate: Advanced lookups, conditional rules (IFS), PivotTable summaries, chart generation, and data validations.
  3. Advanced: Power Query tools, dynamic array formulas, interactive dashboards, and macro automation scripts.
  4. 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.

Path: Financial Analyst

Master financial math formulas (PMT, NPV, IRR) → setup scenario forecasting models → build reporting dashboards.

Path: Business Analyst

Master cell rules checking, lookup functions library, pivot summaries, and dashboard presentation techniques.

Path: MIS Executive

Focus on data entry speed, VLOOKUP/SUMIFS data reports, and macro scripts to automate recurring files.

Was this page helpful?

🚀 Join the ExcelSuperGuru Community 0