Needing help with a payroll formula fast

anthony.fowble

New Member
Joined
Jul 12, 2012
Messages
8
Attached is a prntscr of my workbook,
Im wanting to start by writing a formula for Patti Stonesifer (the 1st employee in the worksheet)’s gross pay in the Gross Pay column. Regular pay is the employee’s pay for up to 40 hours and is computed as hourly rate * hours worked. Overtime pay is paid for overtime hours. Overtime pay is computed as hourly rate * overtime rate * overtime hours.

  • reference Overtime rate in the gross pay formula using absolute cell reference form, i.e. $C$3 so that the formula can be copied. The gross pay is Regular Pay + Overtime Pay. When her gross pay formula is correct, copy it down through the remaining employee’s gross pay cells
but i am having the hardest time coming up with a formula,

can you help? PLEASE!!
hope this makes sense
Anthony



Screenshot ------> http://i1058.photobucket.com/albums/t419/anthonyfowble1/12.jpg[/QUOTE]
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Welcome to the board..

here's a basic syntax


OverTimeThreshold = 40

Regular Pay
=MIN(OverTimeThreshold,HoursWorked)*RegularPay

Overtime Pay
=MAX(0,HoursWorked-OverTimeThreshold)*OvertimePay

Gross Pay
=RegularPay+OvertimePay


Hope that helps.
 
Upvote 0
Try

=($E6*$D6)+($F6*($D6*$C$3))


Note, probably not a good idea to have real people's names in that picture...
 
Upvote 0
All the last names are phonies(made sure of it before i posted)
ill give the formula a try real quick,
thank you so much!!!
 
Upvote 0
hey i need help with one more thing real quick

i need to perform this

  1. formula using nested IF function that classifies the employees as follows (hours worked = regular hours + overtime hours):
    1. hours worked > 45: “Overworked”
    2. 45>=hours worked > 35: “OK”
    3. hours worked <= 35: “Underworked”
 
Upvote 0

Forum statistics

Threads
1,215,503
Messages
6,125,179
Members
449,212
Latest member
kenmaldonado

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