Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
19 views

Lecture

IIT course
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views

Lecture

IIT course
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Lecture-9

Project-3: Preparing Commission Calculation


Consider the following data that lists total sales done by each salesman of the One Stop Shopping
Mall at Rapa Plaza, Dhaka.

Suppose that you want to calculate commission that has to be paid to each salesman according to the
following criteria:
If total sales is Then Commission
Greater than Tk. 20000 10% of Total Sale
Greater than Tk. 15000 8% of Total Sale
Greater than Tk. 10000 5% of Total Sale
Greater than Tk. 7000 3% of Total Sale
Greater than or equal to Tk. 7000 2% of
Total Sale
Solution:
Move the cell pointer to cell D2🡪Type the formula
=IF(C2>20000,C2*10%,IF(C2>15000,C2*8%,IF(C2>10000,C2*5%,IF(C2>7000,C2*3%,C2*2%))))🡪Pr
ess Enter🡪Commission for the 1st salesman Kalam will be shown in cell D2.
❖ To calculate commission for other salesman you don’t need to type formula again in cells D3,
D4, D5, ……… D12. You just follow Filling Method A or B

Project-4: Counting Tutorial Marks for students


Consider the following list of data that contains three tutorial marks out of 20 obtained by each student

in a course.

Suppose you want to calculate the final tutorial marks obtained by each student by averaging
the best two marks out of three.
Solution:
Move the cell pointer to cell F2🡪Type the formula
=(SUM(C2:E2)-MIN(C2:E2))/2🡪Press Enter🡪 Average marks obtained by Atik bearing roll no. 1 will
appear in cell F2.
To calculate average marks for other students you don’t need to type formula again in cells F3, F4, F5,
……… F11. You just follow Filling Method A or B described in page 105

Project-5: Preparing Grade Sheet (GPA Calculation)

Consider the following list of data that contains marks in six courses obtained by each student in the
course end Examination of Post-Graduate Diploma in Computer and Information Technology.

(N.B. to enter column names like the one shown in the figure, select cells A1 and B1 🡪Then Click
Merge and Center icon on the Standard Toolbar🡪Type Name in the merged cell. Similarly,
select cell B1 and B2🡪Merge these two cells into one cell on the above process and type Roll in the
merged cell. Select cells C1, D1 and E1🡪Merge these three cells into one cell and type CIT-301 in the
merged cell and so on).

Suppose you want to calculate letter grade (LG) and grade point (GP) for each course for each
student and finally you want to calculate grade point average (GPA) for each student according to the
following criteria:
If marks obtained is Then Letter Grade is Then Grade point is
From 90 to 100 A+ 4.00
From 80 to 89 A 3.50
From 70 to 79 B+ 3.00
From 60 to 69 B 2.50
From 50 to 59 C 2.00
From 40 to 49
D
1.00
Less than 40 F 0.00

Solution:
Step-1: To calculate letter grade (LG) for course CIT-301:
Move the cell pointer to cell D3🡪Type the formula
=IF(C3>=90,"A+",IF(C3>=80,"A",IF(C3>=70,"B+",IF(C3>=60,"B",IF(C3>=50,"C",IF(C3>=40,"D","F
"))))))🡪Press Enter🡪LG in course CIT-301 for Shilpi bearing roll no. 2 will be shown in cell D3.
❖ To calculate LG in course CIT-301 for other students you don’t need to type formula again in
cells D4, D5 …..,D20. You just follow Filling Method A or B described in page 105

Step-2: To calculate letter grade (LG) for other courses:


To calculate LG in course CIT-302, CIT-303…….CIT-306 you don’t need to type formula again in cells
G3, J3 …..,S3🡪Move the cell pointer to cell D3🡪Press Ctrl+C to copy formula (as a result, animated
box appears round cell D3)🡪Move cell pointer to cell G3 and press Ctrl+V (as a result LG in course
CIT-302 for Shilpi bearing roll no. 2 will be shown in cell G3)🡪Move cell pointer to cell J3 and press
Ctrl+V (as a result LG in course CIT-303 for Shilpi bearing roll no. 2 will be shown in cell J3)🡪In this
process, move the cell pointer to other cells (M3, P3, S3) and paste the formula to show result🡪Press
Esc key to cancel the animated box.
To calculate LG in course CIT-302 for other students, move the cell pointer to cell G3 and drag the fill
handle down to cell G20. In this process find out LG for other courses.

Step-3: To calculate grade point (GP) for course CIT-301:


Move the cell pointer to cell E3🡪Type the formula
=IF(C3>=90,4.00,IF(C3>=80,3.50,IF(C3>=70,3.00,IF(C3>=60,2.50,IF(C3>=50,2.00,IF(C3>=40,1.00,0.
00))))))🡪Press Enter🡪GP in course CIT-301 for Shilpi bearing roll no. 2 will be shown in cell E3.
❖ To calculate GP in course CIT-301 for other students you don’t need to type formula again in
cells E4, E5 …..,E20. You just follow Filling Method A or B described in page 105

Step-4: To calculate grade point (GP) for other courses:


To calculate GP in course CIT-302, CIT-303…….CIT-306 you don’t need to type formula again in cells
H3, K3 …..,T3🡪Move the cell pointer to cell E3🡪Press Ctrl+C to copy formula (as a result, animated
box appears round cell E3)🡪Move cell pointer to cell H3 and press Ctrl+V (as a result GP in course
CIT-302 for Shilpi bearing roll no. 2 will be shown in cell H3)🡪Move cell pointer to cell K3 and press
Ctrl+V (as a result GP in course CIT-303 for Shilpi bearing roll no. 2 will be shown in cell K3)🡪In this
process, move the cell pointer to other cells (N3, Q3, T3) and paste the formula to show result🡪Press
Esc key to cancel the animated box.
To calculate GP in course CIT-302 for other students, move the cell pointer to cell J3 and drag the fill
handle down to cell J20. In this process find out GP for other courses.

Step-5: To calculate grade point average (GPA) for each student:


Move the cell pointer to cell U3🡪Type the formula
=AVERAGE(E3,H3,K3,N3,Q3,T3)🡪Press Enter🡪GPA in for Shilpi bearing roll no. 2 will be shown in
cell U3.
❖ To calculate GPA for other students you don’t need to type formula again in cells U4, U5
…..,U20. You just follow Method A Filling Method A or B described in page 105
Prepared by Jesmin Akhter,Lecturer of CITI,JU,Savar,Dhaka

You might also like