shujon

New Member
Joined
Jul 22, 2012
Messages
2
I have my CSE-101 Exam ahead and all I know can do in MS Excel is simple summations and deductions. I would be really grateful if someone helps me out with my following problem.

Consider the following payroll information of a company and write the formula asked.

House Allowance:
40% of Basic salary.

Medical Allowance:
1000 Tk. Whose Basic salary is more than 20000 Tk.
800 Tk. Whose Basic salary is more then or equal to 15000 Tk.
600 Tk. Whose Basic salary is less than 15000 Tk.

ABCDEFG
1Employee’s IDClassBasic SalaryMedical AllowanceHouse AllowanceOvertime (Hour)Total Salary
22001-1-23-345A5000010
32000-3-56-756B2500015
42002-7-56-243B2500025
52003-1-10-032A5000010
62004-4-67-465A5000021
72006-4-67-342C2000024

<tbody>
</tbody>


  1. Write a formula to calculate the Medical Allowance for every employee.
  2. Write a formula to calculate the House Allowance for every employee.
  3. Write formula to find total salary of the employees above (500tk/Hour is given for overtime).
  4. Write a formula to calculate the number of employees of A, B and C class employees and show it in a chart.
  5. Write a formula to find the sum of Medical allowance of class C employees.
  6. Write a formula to find the average House Allowance of class B employees
 
Last edited:

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Medical allowance

Code:
=(C2)*0.4

Housing Alowance

Code:
=IF(C2<15000,600,IF(C2=15000,800,IF(C2<20000,800,IF(C2>20000,1000,800))))

I'm sure that you are supposed to do homework yourself
 
Upvote 0
Thanks I do my own home work but the problem is I find excel & database related works difficult. But I am trying. :)

Thanks again
Shujon
 
Upvote 0

Forum statistics

Threads
1,215,133
Messages
6,123,233
Members
449,092
Latest member
SCleaveland

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top