Practical: Create a Student Fee Record in MS Excel

Create a Student Fee Record in MS Excel

Objective

To create a fee record that automatically calculates students’ remaining fees and displays their payment status.

Steps

  1. Open Microsoft Excel and select Blank Workbook.
  2. Merge cells A1:F1 and type STUDENT FEE RECORD. Make it bold and centre-aligned.
  3. In row 3, enter these headings:
ColumnHeading
ARoll No.
BStudent Name
CTotal Fee
DPaid Amount
ERemaining Amount
FFee Status
  1. Enter the students’ roll numbers, names, total fees, and paid amounts from row 4.
  2. In cell E4, calculate the remaining amount:
=C4-D4
  1. In cell F4, display the fee status:
=IF(E4=0,"Paid",IF(D4=0,"Unpaid","Partially Paid"))
  1. Select cells E4:F4 and drag the fill handle downward to apply the formulas to all students.
  2. At the bottom of the record, calculate the totals:
=SUM(C4:C13)

Use the same formula for the Paid Amount and Remaining Amount columns by changing the column letters.

  1. Format the fee columns as currency through Home → Number → Currency.
  2. Apply borders, bold headings, and suitable column widths.
  3. Use Conditional Formatting to display:
  • Paid in green
  • Partially Paid in yellow
  • Unpaid in red
  1. Check all formulas and save the workbook as:

Student_Fee_Record.xlsx

Result

A student fee record is created that automatically displays paid, partially paid, unpaid, and remaining fee information.

Scroll to Top