Excel Practice Sheet
1. Employee Salary Sheet
| Employee ID | Name | Basic Pay | HRA | DA | PF | Gross Salary | Net Salary |
|-------------|---------|-----------|------|------|------|---------------|------------|
| 101 | A. Das | 15000 | 3000 | 1500 | 1800 | | |
| 102 | B. Roy | 18000 | 4000 | 1800 | 2000 | | |
| 103 | S. Sen | 20000 | 4500 | 2000 | 2200 | | |
Formulas:
- Gross Salary = Basic Pay + HRA + DA
- Net Salary = Gross Salary - PF
2. Sales Data Table
| Date | Product | Quantity | Unit Price | Total |
|------------|-----------|----------|------------|--------|
| 01/07/2025 | Pen | 20 | 10 | |
| 02/07/2025 | Notebook | 15 | 25 | |
| 03/07/2025 | Marker | 10 | 30 | |
Practice:
- Total = Quantity * Unit Price
- Use AutoSum, Conditional Formatting, and Filters
3. Student Marks Sheet
| Name | Math | English | Science | Total | Average | Grade |
|-------|------|---------|---------|-------|---------|--------|
| Anik | 80 | 70 | 90 | | | |
| Riya | 65 | 75 | 60 | | | |
| Shuvo | 95 | 85 | 80 | | | |
Formulas:
- Total = Math + English + Science
- Average = Total / 3
- Grade (using IF function):
=IF(Average>=90,"A+",IF(Average>=80,"A",IF(Average>=70,"B",IF(Average>=60,"C","Fail"))))
4. Attendance Sheet
Excel Practice Sheet
| Name | 1-Jul | 2-Jul | 3-Jul | 4-Jul | Total Present |
|--------|-------|-------|-------|-------|----------------|
| A. Das | P |A |P |P | |
| B. Roy | P |P |P |A | |
Formula:
- Total Present = COUNTIF(B2:E2,"P")