Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
2 views2 pages

Excel Practice Sheet

The document contains practice sheets for Excel covering employee salary calculations, sales data, student marks, and attendance tracking. It includes tables with formulas for calculating gross and net salaries, total sales, averages, and attendance counts. Each section provides practice exercises utilizing Excel features like AutoSum and Conditional Formatting.

Uploaded by

Call Back
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

Excel Practice Sheet

The document contains practice sheets for Excel covering employee salary calculations, sales data, student marks, and attendance tracking. It includes tables with formulas for calculating gross and net salaries, total sales, averages, and attendance counts. Each section provides practice exercises utilizing Excel features like AutoSum and Conditional Formatting.

Uploaded by

Call Back
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

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")

You might also like