របៀបធ្វើតារាងសម្រង់វត្តមានក្នុង Excel - Student Attendance Tracking List in Excel (Video in Khmer)
Learn how to create a student attendance tracking sheet in Excel step-by-step using formulas like COUNTIF to calculate total present and absent days.
Advertisement
Hello everyone! In today's video tutorial, you will learn a simple step-by-step method to create an automated student or employee attendance tracking table in Excel.
Tracking attendance manually takes a lot of time. By using simple Excel formulas like COUNTIF, you can calculate total Present (P), Absent (A), and Permission/Leave days automatically!
🛠️ Step-by-Step Guide: Student Attendance Tracking
Step 1: Set Up Attendance Column Headers
- Create header columns for No., Student Name, Gender, and daily dates across the month (
1,2,3, ...,31). - Add summary columns at the end of your table:
- Total Present (P)
- Total Absent (A)
- Permission (Leave)
- Attendance Rate (%)
Step 2: Use Status Shortcodes
Enter shortcodes in daily attendance cells:
P= PresentA= AbsentPermission= Permission / Leave
Step 3: Write COUNTIF Formulas to Calculate Totals
Assuming daily attendance data for a student is in range D2:AH2:
- Calculate Total Present Days:
=COUNTIF(D2:AH2, "P") - Calculate Total Absent Days:
=COUNTIF(D2:AH2, "A") - Calculate Total Permission Days:
=COUNTIF(D2:AH2, "Permission")
Advertisement
💡 Pro Tips
- Highlight Absent Cells Automatically (Conditional Formatting):
- Select your daily attendance grid (
D2:AH30). - Go to Home tab ➔ Conditional Formatting ➔ Highlight Cells Rules ➔ Equal To...
- Type
Aand select Light Red Fill with Dark Red Text so absent entries stand out immediately!
- Select your daily attendance grid (
- Create Status Drop-Down Menu (Data Validation):
- Select your attendance cells ➔ Go to Data tab ➔ Data Validation ➔ Allow List ➔ Type Source:
P, A, Permission. - This creates a drop-down arrow in every cell so users can click to select status instead of typing manually!
- Select your attendance cells ➔ Go to Data tab ➔ Data Validation ➔ Allow List ➔ Type Source:
- Calculate Attendance Rate Percentage:
- To get the total attendance percentage rate:
=COUNTIF(D2:AH2, "P") / COUNTA(D2:AH2) - Change the cell format to Percentage (
0.0%).
- To get the total attendance percentage rate:
Found this tutorial helpful? Share it with colleagues:
Advertisement