You are on page 1of 10

A

SS

Total
Marks

Average

PARAM INFOTECH

MARKS CARD FORMAT

Sl.
Reg No
No

Name

Kan

Eng

Hin

Maths Sci

C11

ADITHYA

89

54

58

68

87

82

C12

USHA

75

68

67

84

78

84

C13

MANOJ

68

84

94

89

94

87

C15

AMAR

87

97

68

67

91

96

C16

RAVI

69

88

81

58

58

94

9
10

Questions

11

1. Calculate Total and average marks.

12

=SUM(D4 .. I4)
=AVERAGE(D7.. I7)

13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

2. Find the result for following condition


a) Average >= 75, Result is Distinction
b) Average >= 60, Result is First Class
c) Average >= 50, Result is Second Class
d) Average >= 40, Result is Pass Other wise Fail

=IF(K4>=75, "DISTINCTION", IF(K4 >= 60, "FIRST CLASS", IF(K4 >= 50, "SECOND CLASS", IF(K4
"FAIL"))))
3. Find the Maximum and Minimum marks

=MAX(D4 .. I4)
=MIN(D4 .. I4)
4. Count the number of First class and Second class

=COUNTIF(L4 .. L8, "FIRST CLASS")


=COUNTIF(L4 .. L8, "SECOND CLASS")

AM INFOTECH

S CARD FORMAT

2
3

Result

Min

Max

4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

60, "FIRST CLASS", IF(K4 >= 50, "SECOND CLASS", IF(K4 >= 40, "PASS",
20
21
22
23
24
25
26
27
28

Name

Basic

Adithya

25000

Usha

20000

DGS

18000

Ananda

15000

Poornima

10000

HRA

DA

CCA

PF

LIC

8
10
11

Questions

1. Calculate HRA = 30%, DA=60%, and CCA=5% of Basic salary.


=B3 * 30%

12

=B3 * 60%

13

=B3 * 5%

14

2. Calculate PF = 3%, LIC=10% of Basic salary.

15

=B3 * 3%

16

=B3 * 10%

17
18
19
20
21
22
23

TAX

Gross
Salary

SALARY STATEMENT FORMAT

3. Calculate Income tax 20% of Gross salary.


=I3 * 20%
4. Calculate Gross salary (ie. Basic, HRA,DA,CCA)
=SUM(B3 . . E3)
5. Calculate Deduction And Net salary

24

=SUM(F3 .. H3)

25

= I3 - J3

SALARY STATEMENT FORMAT

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

Deduction Net Salary

MESCOM, ELECTRICITY BILL FORMAT

1
2

Nature Traiff

New
Reading

Old
Reading

LT-2

5240

LT-2

LT-2

Units

Rate

TAX 5%

Fixed

Interest

4520

40

10

3524

2540

40

15

6581

5555

40

Questions

7
8
9
10
11

1. Calculate consumed units


=B3 - C3

15

2. Calculate rate for the following condition


a) Consumed units less than or equal to 50, per units Rs. 2
b) Consumed units greater than 50 and <= 100, per units Rs. 3
c) Consumed units greater than 100 and <= 200, per units Rs. 4
d) Consumed units greater than 200, per units Rs. 5

16

=IF(D3 <= 50, D3 * 2 , IF(AND(D3 > 50, D3 <= 100) , D3* 3, IF(AND( D3 > 100, D3 <= 200) , D

17

3. Calculate tax 5% on rate

18

=E3*5%

19

4. Calculate total bill amount

12
13
14

20

=SUM(E3 . . I3) - J3

Bal

Discount

150

200

35

LECTRICITY BILL FORMAT 1


Total
Bill

6
7
8
9
10
11
12
13
14
15

00) , D3* 3, IF(AND( D3 > 100,16


D3 <= 200) , D3* 4 , D3 * 5 )))
17
18
19
20

PARAM INFOTECH
PROFIT AND LOSS

Sales of goods Rs.

1000000

Purchase of goods Rs. 50% of Sales

=H4 * 50%

Gross Profit (GP)

=H4 - H5

Expenses
1. Advertisement 15% of Gross profit

=H6 * 15%

2. Employee salaries

25000

3.Electricity bill

3000

4. Miss. Expenses

2000

Total Expenses

=SUM(H8 .. H11)

Income
1. Commission received 2% on sales

=H4 * 2%

2. Rent received

3000

3. Furniture sales for cash

4000

Total Incomes

=SUM(H14 .. H16)

Profit

=H6 - H12 + H17

Income tax paid on 10% of profit

=H18 * 10%

Net Profit

=H18 - H19

TDS 5% on Net profit


(If Net profit is more than 75000, other wise 2%)
=IF(H20 >= 75000, H20 * 5%, H20 * 2% )

Vehicle

Price

Qunty

Karnataka

TVS Victor

45000

150

Panjab

Hero Honda

43000

130

Keral

Bajaj CT 100

35000

200

Tamil Nadu

Yamaha Crux

36000

100

Maharastra

Honda Active

30000

125

8
9
10
11
12
13
14
15

Commission

Medal

D.G.S GROUPS OF COMPANY


State

Total

Questions
1. Calculate Total amount
=C3 * D3
2. Calculate commission for the following conditions.
Total amount >= 50 lakh , 5% commission,
Total amount >= 30 lakh and less than 50 lakh 3% commission,
Total >= 20 lakh and less than 30 lakh 2% comm, other wise no commission

16
17
18
19
20
21
22

=IF(E3 >= 5000000, E3 * 5% , IF(E3 >= 3000000, E3 * 3%, IF(E3 >= 2000000, E3 * 2% , 0 ))
3. Find out Medal list for following condition
Total amount >= 75 lakh , Gold medal
Total amount >= 50 lakh and less than 75 lakh, Silver medal
Total >= 25 lakh and less than 50 lakh, Bronze medal , other wise no medal

23
24
25
26

=IF(E3 >= 7500000, "GOLD", IF(E3 >= 5000000, "SILVER", IF(E3 >= 2500000, "BRONZE", "
4. Count the number of Gold medal

27
28
29
30

=COUNTIF(G3 .. G7, "GOLD")


5. Find out total commission of gold medalist

31
32

=SUMIF(G3 .. G7, "GOLD", F3 .. F7)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

(E3 >= 3000000, E3 * 3%, IF(E3 >= 2000000, E3


17 * 2% , 0 )))
18
19
20
21
22
23

3 >= 5000000, "SILVER", IF(E3 >= 2500000, "BRONZE",


24
"NIL")))
25
26
27
28
29
30
31
32

INCOME TAX CALCULATION


NAME

ANNKUAL INCOME

DGS

500000

ADITHYA

800000

SUMAN

300000

NAGARAJ

250000

TAX

20000

Annual income <= 300000 , No Tax


Annual income > 300000 and <= 500000, 10% Tax
Annual income > 500000 and <= 800000, 20% Tax
Annual income > 800000 , 30% Tax
FORMULA
=IF(B3 <= 300000, 0, IF(AND(B3 > 300000, B3 <= 500000), (B3 - 300000) * 10%,
IF(AND(B3 > 500000, B3 <= 800000), 200000*10% + (B3-500000)*20%, 200000*10% +
300000 * 20% + (B3 - 800000)*30% )))

You might also like