Assignment Overview
Duration: 6 hours (mostly outside class; lab time is for checkpoints)
Total Marks: 30 points
Type: Individual practical work
Submission: One Excel workbook plus a short reflection note
Sample data: Download sales_data_large.csv and employee_payroll.csv.
Learning Outcomes
By completing this assignment, you will demonstrate your ability to:
- Manage and clean tabular data (sort, filter, validation, freeze panes)
- Build formulas with relative, absolute, and mixed references
- Use logical, lookup, statistical, financial, and date functions
- Create pivot tables, charts, and a summary dashboard
- Link worksheets (and optionally workbooks) for reporting
Part A: Data Management and Formatting (8 points)
Task 1: Import and Format Sales Data (4 points)
- Create a new workbook. Save as
PRC110_Unit3_[YourRollNo].xlsx. - Import
sales_data_large.csvinto a sheet named Sales (Data β From Text/CSV, or paste). - Ensure headers are in row 1 and the data is a continuous table (no blank rows).
- Apply formatting:
- Header row: bold, dark blue fill, white font, AutoFilter on
- Currency columns (Sales Amount): Number format with thousands separator and 2 decimals, or Accounting (NPR)
- Freeze the top row
- AutoFit column widths
- Add a new column Unit Price with formula
= [@Sales Amount] / [@Units Sold](or=D2/E2filled down). Guard against divide-by-zero with=IF(E2=0,"",D2/E2).
Evidence: Sales sheet correctly formatted with Unit Price formulas.
Task 2: Sort, Filter, Validation, Text to Columns (4 points)
- Sort Sales by Region (AβZ), then Sales Amount (largest to smallest).
- Create a sheet named Cleaned. Copy the Sales table there.
- On Cleaned, insert a helper column that splits a combined field:
- Insert column A titled RegionCode. Temporarily create values like
North-N01in a scratch column if needed, or use Text to Columns on a sample βCity-Codeβ column you add with 10 example values (e.g.Pokhara-PKR).
- Insert column A titled RegionCode. Temporarily create values like
- Apply Data Validation on the Region column: list
North,South,East,West. - Apply conditional formatting colour scale on Sales Amount.
- Set Print Titles so row 1 repeats on each printed page (Page Layout β Print Titles).
Evidence: Cleaned sheet with validation, conditional formatting, and print titles set.
Part B: Cell References and Core Formulas (7 points)
Task 3: Pricing Sheet with Absolute References (4 points)
- Create sheet Pricing.
- In
H1enter tax rate0.13and labelG1asVAT Rate. - Build a small product table (at least 6 products) with columns: Product, Units, Unit Price (NPR), Line Total, VAT, Grand Total.
- Formulas:
- Line Total: relative
=B2*C2 - VAT:
=D2*$H$1(absolute tax rate) - Grand Total:
=D2+E2
- Line Total: relative
- Add summary cells using
SUM,AVERAGE,MAX,MINfor Line Total and Grand Total.
Evidence: Pricing sheet showing absolute $H$1 usage in the formula bar.
Task 4: Mixed References Mini-Matrix (3 points)
- On Pricing, create a 4Γ4 commission matrix (rows = products AβD, columns = rates 5%, 8%, 10%, 12%).
- Store rates in row 20 (
B20:E20) and product bases in columnA21:A24. - In
B21use a mixed reference formula such as=$A21*B$20and fill across/down.
Evidence: Matrix filled correctly; formula uses mixed references.
Part C: Essential Functions (10 points)
Use sheet Employees imported from employee_payroll.csv (or recreate the same columns).
Task 5: Logical and Conditional Aggregates (4 points)
- Add column Gross = Basic + Allowance.
- Add column Tax = Gross Γ absolute tax rate cell (reuse
0.13or a local tax cell). - Add column Net = Gross β Tax.
- Add column Status with nested IF:
- Net > 45000 β
"High" - Net > 25000 β
"Medium" - else
"Low"
- Net > 45000 β
- Use
COUNTIF/SUMIF/AVERAGEIFto report counts and totals by Status and by Department.
Task 6: Lookup and Financial/Date Functions (6 points)
- Build a lookup panel:
- Cell
B30: employee name typed by you C30:VLOOKUPreturning NetD30:INDEX/MATCHreturning Department (verify both approaches)
- Cell
- EMI calculator block:
- Loan amount, annual rate, tenure (months)
=PMT(rate/12, nper, -pv)labelled clearly
- Date block:
- Join date column (or add one)
- Years of service with
=DATEDIF(join_date, TODAY(), "Y")
- Optional stretch (bonus, not required for full marks):
SIN/COSdemo cell documenting a simple angle conversion for syllabus familiarity.
Evidence: Working VLOOKUP, INDEX/MATCH, PMT, and DATEDIF outputs.
Part D: Pivot Tables, Charts, and Linking (5 points)
Task 7: Pivot + Chart (3 points)
- From Sales, create a Pivot Table on sheet Pivot:
- Rows: Region (and optionally Product)
- Values: Sum of Sales Amount, Sum of Units Sold
- Insert a Pivot Chart (clustered column or pie).
- Add a Slicer for Region (or Product) and demonstrate a filtered view.
Task 8: Cross-Sheet Summary (2 points)
- Create sheet Dashboard.
- Pull key totals from Employees and Pivot using worksheet links (e.g.
=Employees!G12,=Pivot!B4). - Add one chart on Dashboard summarising regional sales.
- Write 4β6 bullet insights in a text box or adjacent cells.
Deliverable workbook: PRC110_Unit3_[YourRollNo].xlsx containing Sales, Cleaned, Pricing, Employees, Pivot, Dashboard.
Also submit PRC110_Unit3_Reflection_[YourRollNo].docx (Β½β1 page): which functions were hardest, one error you fixed, and how Excel helps BBA coursework.
Submission Guidelines
File Organization
PRC110_Unit3_[YourName]/
βββ PRC110_Unit3_[YourRollNo].xlsx
βββ PRC110_Unit3_Reflection_[YourRollNo].docx
Submission Method
Submit on Google Classroom by the deadline set by your faculty. Late work may attract grade deductions.
Grading Rubric
| Component | Points | Criteria |
|---|---|---|
| Part A: Data management & formatting | 8 | Import, format, freeze, validation, conditional format, print titles |
| Part B: References & core formulas | 7 | Relative, absolute, mixed references correct |
| Part C: Essential functions | 10 | Nested IF, aggregates, VLOOKUP, INDEX/MATCH, PMT, DATEDIF |
| Part D: Pivot, chart, linking | 5 | Pivot + chart + slicer + Dashboard links + insights |
| Total | 30 |
Tips for Success
- Keep one clean header row; never merge header cells before pivoting.
- Press
F4to cycle$locks while editing formulas. - After changing source data, right-click the pivot β Refresh.
- Name sheets clearly; avoid spaces in names you will reference often.
- Save early and keep a backup copy.
Common Mistakes to Avoid
- Using relative references for tax/VAT rates
- Filtering the wrong range (missing rows)
- Building pivots from incomplete selections
- Leaving
#N/Alookup errors without checking exact name spelling - Submitting CSV files instead of the
.xlsxworkbook
π Related Notes:


