Latest Post

Electronic Spreadsheet — Computer Operator Loksewa Preparation

๐Ÿ“‹ Loksewa Preparation · Computer Operator

Electronic Spreadsheet

Complete notes covering MS Excel concepts, features, formulas, and operations — aligned with Nepal Lok Sewa Aayog Computer Operator exam syllabus.

๐Ÿ“„ What is an Electronic Spreadsheet?

An Electronic Spreadsheet is a software application used for organizing, analyzing, and storing data in a tabular format. It consists of rows and columns forming a grid of cells where users can enter text, numbers, and formulas.

Common examples: Microsoft Excel, Google Sheets, LibreOffice Calc, and Apple Numbers.

Key Features

Data Entry & StorageAllows input of numerical and textual data.
Mathematical CalculationsSupports formulas and functions.
Data AnalysisSorting, filtering, and conditional formatting.
Graphical RepresentationCreates charts and graphs from data.
AutomationAutoSum, Macros, and Pivot Tables.
What-If AnalysisGoal Seek and Solver for scenario analysis.

๐Ÿงฉ Components of a Spreadsheet
ComponentDescription
CellBasic unit where data is entered. Identified by address (e.g., A1, B3).
RowHorizontal divisions labeled with numbers (1, 2, 3 …).
ColumnVertical divisions labeled with letters (A, B, C …).
WorksheetA single spreadsheet page where data is entered and processed.
WorkbookA file containing one or more worksheets (e.g., an .xlsx file).
WorkspaceThe entire working area including menu bar, toolbars, and the grid.

⚖️ Excel 2003 vs. Latest Versions (2016 / 2019 / 365)
FeatureExcel 2003Excel 2016 / 2019 / 365
File Format.xls.xlsx
Rows × Columns65,536 rows × 256 cols1,048,576 rows × 16,384 cols
Ribbon InterfaceNo (classic menus)Yes (Ribbon with tabs)
Conditional FormattingLimitedAdvanced (color scales, data bars, icon sets)
Formula AutoCompleteNoYes
Pivot TablesBasicSlicers & timeline filters
Data Analysis ToolsBasicPower Query, Power Pivot, Forecasting
Cloud IntegrationNoOneDrive, SharePoint, real-time collaboration

๐Ÿ“‚ Workbook Operations

Creating a Workbook

  • Open the spreadsheet application (MS Excel, Google Sheets, etc.)
  • Click File → New for a blank workbook.
  • Shortcut: Ctrl + N

Opening a Workbook

  • Click File → Open and select the saved file.
  • Shortcut: Ctrl + O
  • Recent files are accessible from File → Recent Files.

Saving a Workbook

  • File → Save As — choose location, name, and format (.xlsx, .xls, .csv).
  • Shortcut: Ctrl + S

Page Setting

  • File → Page Setup — adjust orientation, paper size, margins, and print area.
  • Orientation options: Portrait or Landscape.

Print Preview & Printing

  • Preview: File → Print Preview or Ctrl + P
  • Print options: Print Active Sheets, Print Entire Workbook, or Print Selection.

๐Ÿ–ฅ️ Spreadsheet Environment
Menu BarContains File, Edit, View, Insert, Format, Tools, Data, Window, Help menus.
Standard ToolbarNew, Open, Save, Print, Undo, Redo, Cut, Copy, Paste.
Formatting ToolbarText alignment, font style, color, number formatting.
Formula BarDisplays and allows editing of cell formulas/content.
Status BarShows mode (Ready/Edit), sum, average, count, macro recording status.
ScrollbarsVertical (up/down) and Horizontal (left/right) navigation.

✏️ Cell Operations

Editing Cell Contents

  • Click cell and start typing, or double-click to modify existing content.
  • Edit in Formula Bar, then press Enter.
  • Shortcut: F2 to edit the selected cell directly.

Copying, Moving & Deleting

OperationMethod
CopyCtrl+C → select destination → Ctrl+V
MoveCtrl+X → select destination → Ctrl+V, or drag the cell
Delete ContentSelect cell → Delete (keeps formatting)
Delete CellRight-click → Delete (shifts adjacent cells)
Clear AllHome → Clear → Clear All

Formatting Cells

Format TypeDetails
FontBold Ctrl+B, Italic Ctrl+I, Underline Ctrl+U
BorderHome → Borders — Thick, Thin, Dotted, Double
Fill ColorHome → Fill Color, shortcut Alt+H+H
AlignmentLeft, Center, Right; Top, Middle, Bottom; Merge & Center
Number FormatCurrency, Percentage, Date, Time, Scientific — Home → Number Format
ProtectionReview → Protect Sheet/Workbook to lock specific cells

Formatting Rows, Columns & Sheets

  • Row height: Home → Format → Row Height, or double-click row number to auto-fit.
  • Column width: Home → Format → Column Width, or double-click column letter to auto-fit.
  • Insert/Delete: Right-click row number or column letter → Insert/Delete.
  • Rename sheet: Double-click the sheet tab at the bottom.
  • Hide/Unhide sheet: Right-click sheet name → Hide/Unhide.

๐Ÿ”— Cell References
Relative Reference
=A1+10

Default type. Changes when copied to another location. E.g., copying from B2 to C2 updates A1 → B1.

Absolute Reference
=$A$1+10

Uses $ to lock both row and column. Does not change when copied anywhere.

Mixed Reference
=$A1+10

Fixes either the row or the column. Column A is fixed; row number changes on copy.


⚙️ Formulas & Functions

Formulas always start with = and can include operators, cell references, functions, and constants.

Basic Arithmetic

OperationFormulaDescription
Addition=A1+B1Adds values in A1 and B1
Subtraction=A1-B1Subtracts B1 from A1
Multiplication=A1*B1Multiplies A1 by B1
Division=A1/B1Divides A1 by B1
Exponentiation=A1^B1A1 raised to the power of B1

Statistical Functions

FunctionExampleDescription
SUM=SUM(A1:A10)Adds a range of numbers
AVERAGE=AVERAGE(A1:A10)Calculates mean of a range
MIN=MIN(A1:A10)Returns smallest value
MAX=MAX(A1:A10)Returns largest value
COUNT=COUNT(A1:A10)Counts numerical values
COUNTA=COUNTA(A1:A10)Counts non-empty cells
COUNTIF=COUNTIF(A1:A10,">50")Counts numbers matching a condition
IF=IF(A1>50,"Pass","Fail")Returns value based on condition

Text Functions

FunctionExampleDescription
LEFT=LEFT(A1,3)Extracts first 3 characters
RIGHT=RIGHT(A1,2)Extracts last 2 characters
MID=MID(A1,2,3)Extracts 3 characters from position 2
LEN=LEN(A1)Returns total character count
TRIM=TRIM(A1)Removes extra spaces from text
CONCAT=CONCAT(A1,B1)Combines values of A1 and B1

Date & Time Functions

FunctionExampleDescription
TODAY=TODAY()Returns current date
NOW=NOW()Returns current date and time
DAY=DAY(A1)Extracts day from a date
MONTH=MONTH(A1)Extracts month from a date
YEAR=YEAR(A1)Extracts year from a date

Lookup & Reference Functions

FunctionExampleDescription
VLOOKUP=VLOOKUP(1001,A2:C10,2,FALSE)Searches column A, returns value from column 2
HLOOKUP=HLOOKUP(50,A1:E2,2,FALSE)Searches horizontally in a table
INDEX=INDEX(A1:C3,2,3)Returns value at row 2, column 3
MATCH=MATCH(50,A1:A10,0)Finds position of 50 in A1:A10

Logical Functions

FunctionExampleDescription
AND=AND(A1>50,B1<100)TRUE if both conditions are met
OR=OR(A1>50,B1<100)TRUE if at least one condition is met
NOT=NOT(A1>50)Reverses the logical result
IFERROR=IFERROR(A1/B1,"Error!")Returns custom text if formula produces an error
ISERROR=ISERROR(A1/B1)Returns TRUE if there is an error

๐Ÿ”ข Series, Sorting & Filtering

Generating a Series (AutoFill)

  1. Type the first value in a cell (e.g., 1 or 01/01/2024).
  2. Click and drag the fill handle (small square at bottom-right of the selected cell).
  3. Excel auto-generates the series (1, 2, 3 … or Monday, Tuesday …).

For more control: Home → Fill → Series — choose type (Linear, Growth, Date), step value, and stop value.

Sorting Data

  • Single column: Data → Sort → Sort A to Z or Z to A.
  • Multiple columns: Data → Sort → Add Sort Levels (e.g., sort by Category, then by Price).

Filtering Data

  • Select data range → Data → Filter → click dropdown arrows in headers to apply conditions.
  • Advanced Filter: Data → Advanced — define criteria in a separate range; filter in place or copy to another location.

Subtotals

  • Sort data by the category first, then go to Data → Subtotal.
  • Choose grouping column and summary function (SUM, AVERAGE, COUNT).
  • Use +/− buttons on the left to expand or collapse sections.

๐Ÿ“Š Charts in Excel

Charts visually represent data, making it easier to analyze trends and comparisons.

Steps to Create a Chart

  1. Select the data (including labels) to include in the chart.
  2. Go to Insert → Charts and choose a chart type.
  3. Customize using the Chart Tools tab (titles, labels, legend, colors).
  4. Move or resize the chart by clicking and dragging.

Types of Charts

๐Ÿ“Š
Column Chart
Compares values using vertical bars
๐Ÿ“‰
Bar Chart
Similar to column but horizontal bars
๐Ÿ“ˆ
Line Chart
Shows trends over time with lines
๐Ÿฅง
Pie Chart
Proportions as slices of a circle
Scatter (XY)
Relationships between two numeric variables
๐Ÿ”️
Area Chart
Like a line chart with filled area below

๐Ÿ“ Headers, Footers & Spell Check

Inserting a Header or Footer

  1. Go to Insert → Header & Footer.
  2. The worksheet switches to Page Layout View.
  3. Click on the Header or Footer section and type your content.
  4. Use built-in codes: page number &[Page], date &[Date], file name &[File], sheet name &[Tab].

To remove: Insert → Header & Footer → delete content in the area.

Spell Check

  1. Click any cell or select a range to check.
  2. Press F7 or go to Review → Spelling.
  3. In the dialog, choose Change, Ignore, or Add to Dictionary.
Note: Excel checks only text data in cells — it does not check formulas or numbers.

๐Ÿ”„ Importing & Exporting Data

Importing Data

  1. Go to the Data tab on the Ribbon.
  2. Click Get Data (or "Get External Data" in older versions).
  3. Choose the source: From Text/CSV, From Workbook, From Web, or From Database.
  4. Follow the import wizard and click Load.

Exporting Data

FormatExtensionUse Case
Excel Workbook.xlsxDefault Excel format
CSV.csvPlain text, comma-separated — for databases
PDF.pdfNon-editable sharing format
XML.xmlStructured data for databases
OpenDocument.odsOpenOffice / LibreOffice Calc

Steps: File → Save As → choose location → select format from dropdown → click Save. Use File → Export to create PDFs directly.


เค• Devanagari Font in Excel

Devanagari is the script used for Nepali, Hindi, Sanskrit, and other South Asian languages.

Common Devanagari Fonts

MangalDefault Devanagari Unicode font in Windows
KalimatiCommonly used for Nepali text
PreetiVery popular in Nepal
Kruti DevWidely used for Hindi typing

Typing Devanagari in Excel

  1. Enable Keyboard: Settings → Time & Language → Language → Add Hindi/Nepali → Select Devanagari Inscript or Preeti keyboard.
  2. Set Font: Change the Excel cell font to Mangal or Kalimati.
  3. Input Tool: Use Google Input Tools or Microsoft Indic Language Input Tool to convert English to Devanagari.
  4. Sorting: Excel supports sorting Devanagari text alphabetically just like English.
Tip: If characters don't appear correctly, ensure you are using a Unicode-supported font such as Mangal or Kalimati.

Comments