View Categories

excel basics

Introduction to Excel #

Microsoft Excel is a spreadsheet tool used to:

  • Store data
  • Organize data
  • Perform calculations
  • Analyze and visualize data

It is one of the most important tools for beginners in data analysis.

Data Entry in Excel #

What is Data Entry? #

Data entry means adding data into cells in an Excel worksheet.

Types of Data #

TypeExample
TextAlex, Product A
Numbers100, 2500
Date01-01-2025
BooleanTRUE / FALSE

How to Enter Data #

  • Click on a cell (e.g., A1)
  • Type your data
  • Press Enter

Example Dataset #

A (Name)B (Sales)C (Region)
Alex100East
John200West
  • Keep data clean and consistent
  • Avoid empty rows/columns
  • Use proper headings
  • One column = one type of data

Data Formatting in Excel #

Formatting makes your data readable and professional.

Basic Formatting Options #

Font Formatting #

  • Bold, Italic, Font size
    Use for headings

Number Formatting #

FormatExample
Currency$100
Percentage50%
Date12-Jan-2025

Apply from Home → Number section

Alignment #

  • Left, Right, Center
    Keeps data neat

Borders & Colors #

  • Add borders to tables
  • Highlight important data

Example #

Before formatting:

alex   100
john   200

After formatting:

  • Bold headings
  • Proper alignment
  • Borders applied

Cell Referencing (Very Important) #

Cell referencing means referring to a cell’s value in formulas.

Example:

=A1 + B1

Types of Cell Referencing #

Relative Referencing #

Definition #

Reference changes automatically when copied.

Example #

=A1 + B1

If you copy it down:

=A2 + B2

Used in most calculations

Absolute Referencing #

Definition #

Reference remains fixed using $.

Example #

=A1 * $B$1
  • A1 → changes
  • $B$1 → fixed

Mixed Referencing (Bonus) #

TypeExampleMeaning
Row fixedA$1Row fixed
Column fixed$A1Column fixed

Practical Example #

Scenario: Calculate Total Price #

A (Product)B (Price)C (Quantity)D (Total)
A102=B2*C2

Using Relative Reference:

  • Copy formula down → works automatically

Scenario: Tax Calculation #

PriceTax RateFinal Price
10010%=A2*$B$1

$B$1 keeps tax rate constant

Key Difference (Important Table) #

FeatureRelativeAbsolute
Changes when copiedYesNo
SymbolA1$A$1
Use CaseRepeated calculationsFixed values

💬
AIRA (AI Research Assistant) Neural Learning Interface • Drag & Resize Enabled
×