Excel exercises and assignments
Exercise 1
1. For the following table calculate
Price Cost Amount Revenue Tax Net
300 120 4
500 200 3
200 100 1
10000 200 6
400 120 2
1200 400 1
1.1 Calculate the Revenue where Revenue = Amount*Price – Cost.
1.2 Calculate the Tax where Tax = 0.25* Revenue.
1.3 Calculate the Net where Net = Revenue – Tax.
1.4 Format the column Tax with two decimal places.
1.5 Format the column Net with adding the L.E currency sign.
Exercise 2
1. From the following table
Employee name Salary Tax Percentage Tax Value
Hassan Ali 5000
Khaled EL-Sayed 12000
Marawan Sadek 3000
Salma Adel 750
Hishem Marzok 1500
Sara Khalaf 6500
1.1 Calculate the Tax Percentage follows:
IF (Salary >= 4000) THEN Tax Value = 20.
IF (Salary >= 1000) THEN Tax Value = 10.
ELSE Tax Value =5.
1.2 Format the Tax Percentage by adding the percentage sign (%).
1.3 Calculate the Tax Value where (Tax Value = Tax Percentage * Salary).
Format the Tax Value with only one decimal places.
Exercise 3
Find the output for the following functions
1.1 =SUM (A1:A3), =SUM(B1:B3), =SUM(C1;C3)
1.2 =AVGERAGE( A1:A3), =AVGERAGE(B1:B3), =AVGERAGE(C1:A3)
1.3 =COUNT(A1:C3), =COUNT(A1:A3), =COUNT(C1:C2)
1.4 =MAX(A1:C1) , =MAX(A2;C3;B2)
1.5 =MIN(A3:C3)
Assignment 1
In a new Excel spreadsheet call it "IF-Function", in each sheet solve the following exercise
1. For the following table
Sheep number Weight Food Cost Carrying Cost Price Status
1 50 100 20
2 60 250 10
3 30 300 30
4 20 400 10
5 40 450 20
6 35 500 10
1.1 Calculate the Price as follows
Price = (Weight*12) + Food Cost + Carrying Cost.
1.2 Determine the status of each sheep as follows IF (Weight > 50) THEN Status is Sacrifice
ELSE, Status is Leave.
Add the currency symbol L.E to the Price values.