Chapter 3: Use of Spreadsheet in Business Applications
📌 Chapter 3 – Important Topics:
- Payroll Accounting – Components, Gross Pay, Net Pay, Template Design
- Asset Accounting – Depreciation, SLN (Straight Line), DB (Written Down Value)
- Loan Repayment Schedule – EMI, PMT Function, Loan Amortisation
- Previous Year Exam Questions (2018–2024)
Introduction
Spreadsheet can be used for a number of purposes in business, some of them are Payroll Accounting, Asset Management and Loan Repayment Schedule.
Simple Hints: Speed, accuracy, automatic re‑calculation when values change (e.g., DA percentage revision).
1. Payroll Accounting
Payroll is the statement prepared by every organisation to show the detailed salary calculation. It includes BP and allowances such as DA, TA, CCA, HRA and deductions such as contribution to PF, SLI, GIS, TDS, Loan Repayments etc.
Components of Payroll – Earnings
- Basic Pay (BP): The fixed component, includes Grade Pay. Formula:
=BP - Dearness Allowance (DA): % of BP + DP. Formula:
=BP * DA% - House Rent Allowance (HRA): Fixed or % of BP. Formula:
=IF(BP>55500,2500,1500) - Transport Allowance (TA): Fixed amount for eligible employees.
Components – Deductions
- Provident Fund (PF): % of BP+DP. Formula:
=(BP+DP)*PF% - Professional Tax (PT): Fixed slab.
- TDS: Monthly income tax instalment.
- Loan Recovery: Fixed EMI deducted.
Simple Hints: BPE = BP × (Days present / Days in month). Use cell references:
=D4*F12/$F$3.
(a) DA as 14% of basic pay in D4.
(b) HRA ₹2,500 if BP > 55,500 else ₹1,500 in E4.
(c) Gross Pay in F4.
Answer: (a)
=C4*14% (b) =IF(C4>55500,2500,1500) (c) =C4+D4+E4.
🧮 Lab Work: Payroll Calculation with Relative & Absolute References
📋 Given Data
| Sl. No | Name | Post | Basic Pay (₹) |
|---|---|---|---|
| 1 | Arjun | Manager | 40000 |
| 2 | Bina | Technician | 25000 |
| 3 | Ramesh | Driver | 18000 |
Constants stored in cells:
| Cell | Description | Value |
|---|---|---|
| E3 | DA rate | 20% |
| E4 | HRA rate – Manager | 3% |
| E5 | HRA rate – Technician | 2% |
| E6 | HRA rate – Driver | 0% |
| E7 | PF rate | 10% |
🛠 Step‑by‑Step Solution
- Enter the data in cells A9:D12 (Sl.No, Name, Post, BP).
- Enter constants in E3:E7 as above.
- Formulas in row 10 (first employee):
Cell 10: DA = D10 * $E$3 Cell F10: HRA = IF(C10="Manager", D10*$E$4, IF(C10="Technician", D10*$E$5, D10*$E$6)) Cell G10: Gross Pay = SUM(D10:F10) Cell H10: PF = D10 * $E$7 Cell I10: Total Ded = H10 (only PF in this example; you can add others) Cell J10: Net Pay = G10 - I10 - Copy the formulas down from row 10 to row 12 (select G10:J10 and drag fill handle). The absolute references ($E$3, $E$4, $E$5, $E$6, $E$7) stay fixed; the relative references (D10, C10) change to D11, C11 etc.
✅ Final Output (Payroll Statement)
| Sl.No | Name | Post | BP (₹) | DA (₹) | HRA (₹) | Gross (₹) | PF (₹) | Net Pay (₹) |
|---|---|---|---|---|---|---|---|---|
| 1 | Arjun | Manager | 40000 | 8000 | 1200 | 49200 | 4000 | 45200 |
| 2 | Bina | Technician | 25000 | 5000 | 500 | 30500 | 2500 | 28000 |
| 3 | Ramesh | Driver | 18000 | 3600 | 0 | 21600 | 1800 | 19800 |
Answer: All Net Pay values automatically recalculate because the formula
=D10*$E$3 uses an absolute reference to E3. Changing E3 instantly updates every DA and hence Gross and Net Pay.
=D10*E3 (without $ signs) and copied the formula down?Simple Hints: In row 11, it would become
=D11*E4 – wrong, because E4 contains HRA rate, not DA rate. Always use absolute references for constants!
✅ This problem clearly demonstrates the power of absolute referencing – one change updates the entire payroll.
2. Asset Accounting
Asset Accounting covers the complete life cycle of an asset. It means maintain assets register by considering the depreciation of the asset. The inbuilt functions of LibreOffice Calc make the asset accounting more easier.
Depreciation
Depreciation means the gradual and permanent decrease in the value of fixed asset. Two main methods:
2.1 Straight Line Method (SLN)
Fixed amount every year.
Syntax: =SLN(Cost, Salvage, Life)
- Cost = Purchase price + Installation + Other direct costs
- Salvage = Scrap value at end of life
- Life = Useful life in years
=SLN(11000,2000,10) → ₹900 per year.
2.2 Written Down Value Method (DB)
Depreciation reduces each year (on opening WDV).
Syntax: =DB(Cost, Salvage, Life, Period, [Month])
- Period – Year for which depreciation is calculated (1,2,3…)
- Month – (Optional) Months in first year if asset bought mid‑year.
Year 1:
=DB(100000,5000,10,1,12) → ₹20,600Year 2:
=DB(100000,5000,10,2,12) → ₹16,364 (approx.)
Simple Hints: Depreciation rate is applied on the reduced book value, not on the original cost.
Answer: SLN(cost, salvage, life) – cost: original value, salvage: scrap value, life: useful years. DB(cost, salvage, life, period, [months]) – period: year of depreciation, months: months in first year (default 12).
3. Loan Repayment Schedule
It is a table showing the amount of principal and interest components in each instalment until the loan is fully paid off. This schedule also shows the outstanding balance of loan amount after the payment of each instalment.
EMI Calculation – PMT Function
Syntax: =PMT(rate, nper, pv, [fv], [type])
- rate – Interest rate per period. For monthly EMI:
annual_rate/12 - nper – Total number of payments. For monthly:
years*12 - pv – Present value (loan amount)
- fv – Future value (usually 0)
- type – 0 = payment at end of period, 1 = beginning
=PMT(10%/12, 5*12, 200000) → ₹‑4,249 (negative sign indicates payment).
Loan Amortisation Schedule (Principal & Interest split)
- PPMT – Principal part:
=PPMT(rate, period, nper, pv) - IPMT – Interest part:
=IPMT(rate, period, nper, pv)
=PPMT(10%/12, 1, 60, 200000) → ₹‑3,415; interest = =IPMT(...) → ₹‑833.
Simple Hints: Interest is calculated on the outstanding balance, which is large at the beginning.
Answer: PMT function. For detailed split, PPMT and IPMT are used.
മലയാളം വിഭാഗം – ബിസിനസ്സ് ആപ്ലിക്കേഷനുകളിൽ സ്പ്രെഡ്ഷീറ്റിന്റെ ഉപയോഗം
📌 പ്രധാന പാഠഭാഗങ്ങൾ:
- ശമ്പള അക്കണ്ടിംഗ് (Payroll) – ഘടകങ്ങൾ, ഗ്രോസ് പേ, നെറ്റ് പേ, ടെംപ്ലേറ്റ് ഡിസൈൻ
- അസറ്റ് അക്കണ്ടിംഗ് – മൂല്യത്തകർച്ച, SLN (സ്ട്രെയിറ്റ് ലൈൻ), DB (റൈറ്റൻ ഡൗൺ വാല്യൂ)
- വായ്പ തിരിച്ചടവ് ഷെഡ്യൂൾ – ഇഎംഐ, PMT ഫംഗ്ഷൻ, ലോൺ അമോർടൈസേഷൻ
- മുൻവർഷ പരീക്ഷാ ചോദ്യങ്ങൾ (2018–2024)
ആമുഖം
ബിസിനസ്സിലെ നിരവധി ആവശ്യങ്ങൾക്കായി സ്പ്രെഡ്ഷീറ്റ് ഉപയോഗിക്കാം, അവയിൽ ചിലത് ശമ്പള അക്കണ്ടിംഗ്, അസറ്റ് മാനേജുമെന്റ്, വായ്പ തിരിച്ചടവ് ഷെഡ്യൂൾ എന്നിവയാണ്.
1. ശമ്പള അക്കണ്ടിംഗ് (Payroll Accounting)
വിശദമായ ശമ്പള കണക്കുകൂട്ടൽ കാണിക്കാൻ ഓരോ ഓർഗനൈസേഷനും തയ്യാറാക്കിയ പ്രസ്താവനയാണിത്. ബേസിക് പേ, അലവൻസുകൾ (DA, TA, HRA), കിഴിവുകൾ (PF, TDS, ലോൺ) എന്നിവ ഉൾപ്പെടുന്നു.
സൂചന: BPE = BP × (ഹാജർ ദിവസം / മാസത്തിലെ ദിവസങ്ങൾ).
=D4*F12/$F$3.
2. അസറ്റ് അക്കണ്ടിംഗ് (Asset Accounting)
അസറ്റിന്റെ സമ്പൂർണ്ണ ജീവിത ചക്രം ഉൾക്കൊള്ളുന്നു. മൂല്യത്തകർച്ച കണക്കാക്കി അസറ്റ് രജിസ്റ്റർ പരിപാലിക്കുന്നു.
മൂല്യത്തകർച്ച (Depreciation)
രണ്ട് രീതികൾ:
2.1 സ്ട്രെയിറ്റ് ലൈൻ രീതി (SLN)
ഓരോ വർഷവും തുല്യ തുക മൂല്യത്തകർച്ച.
Syntax: =SLN(Cost, Salvage, Life)
=SLN(11000,2000,10) → ₹900 / വർഷം.
2.2 റൈറ്റൻ ഡൗൺ വാല്യൂ രീതി (DB)
മൂല്യത്തകർച്ച ഓരോ വർഷവും കുറഞ്ഞു വരും.
Syntax: =DB(Cost, Salvage, Life, Period, [Month])
=DB(100000,5000,10,1,12) → ₹20,600.
3. വായ്പ തിരിച്ചടവ് ഷെഡ്യൂൾ
ലോൺ പൂർണമായി അടച്ചുതീരുന്നതുവരെ ഓരോ ഗഡുവിലെയും മൂലധനവും പലിശ ഘടകങ്ങളും കാണിക്കുന്ന പട്ടിക.
ഇഎംഐ കണക്കാക്കാൻ PMT ഫംഗ്ഷൻ
Syntax: =PMT(rate, nper, pv, [fv], [type])
=PMT(10%/12, 5*12, 200000) → ₹‑4,249.
സൂചന: പലിശ കുടിശ്ശിക ബാലൻസിൽ കണക്കാക്കുന്നു; തുടക്കത്തിൽ ബാലൻസ് കൂടുതലാണ്.
📘 Important Exam Questions – Chapter 3 (2018–2024)
a) HRA b) CCA c) PF d) DA
Answer: c) PF (Provident Fund is a deduction).
Answer: SLN function.
(a) D.A. (b) D.B. (c) H.R.A. (d) P.F.
Answer: (b) D.B.
(a) HRA (b) PF (c) DA (d) BP
Answer: b) PF
a) SLN b) DB c) PMT
Answer: a) SLN(cost, salvage, life) – cost: purchase price, salvage: scrap value, life: useful life.
b) DB(cost, salvage, life, period, [months]) – period: year of depreciation, months: months in first year.
c) PMT(rate, nper, pv, [fv], [type]) – rate: interest per period, nper: total payments, pv: loan amount.
(a) DA 14% in D4
(b) HRA ₹2,500 if BP > 55,500 else ₹1,500 in E4
(c) Gross Pay in F4
Answer: (a)
=C4*14% (b) =IF(C4>55500,2500,1500) (c) =C4+D4+E4
Answer: Disagree. SLN gives equal depreciation each year (Straight Line). DB gives decreasing depreciation each year (Written Down Value). Both methods and results are different.
(a) Sequential codes (b) Block codes (c) Mnemonic codes (d) Alpha Numeric codes
Answer: (b) Block codes
(a) Sequential codes (b) Block codes (c) Mnemonic codes (d) Numeric codes
Answer: (c) Mnemonic codes
(a) Sequential codes (b) Block code (c) Mnemonic codes (d) None of these
Answer: (c) Mnemonic codes