#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Formula assistance

Hello!

I have posted this question in the more appropriate formula assistance
forum, but since it seems infrequently visted compared to this forum, I
thought maybe someone here could offer some advice.

I have several employees that work for me at $7.00 per hour. They want to
work more hours per week at this same wage, but I am unable to afford
overtime for them.

Department of labor laws state that every hour over 40 per week must be paid
at 1.5 the normal hourly rate. My employees have agreed to take a cut in pay
to enable me to pay them whatever amount is necessary if, when overtime is
applied, they average out to $7.00 per hour. In other words, they are
willing to work for 40 hours per week at x amount and a variable number of
hours for x*1.5 as long as the x +(x*1.5) averages $7.00 per hour.

This number x will change with each schedule since they will work a
different number of hours per schedule (ie an employee may work 55 hours in
week one, 50 hours in week two, 60 hours in week three, and so on). Can
anyone help with a formula that will solve for x based on these changing
hours with the average rate of pay still staying at or around $7.00 per hour?

Thank you,
Brad in Dallas

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,480
Default Formula assistance

Hi

With Hours actually worked in A1, Standard price per hour ($7) in B1, and
A1*B1 in C1
then
=C1/((40+(A1-40)*1.5))
gives the value per hour to pay

So in A3 enter 40, in B3 enter the formula above and in C3 enter = A3*B3
in A4 enter =A1-A3, in B4 enter = B3*1.5, in C4 enter A4*B4

--

Regards
Roger Govier

"Raisincain" wrote in message
...
Hello!

I have posted this question in the more appropriate formula assistance
forum, but since it seems infrequently visted compared to this forum, I
thought maybe someone here could offer some advice.

I have several employees that work for me at $7.00 per hour. They want to
work more hours per week at this same wage, but I am unable to afford
overtime for them.

Department of labor laws state that every hour over 40 per week must be
paid
at 1.5 the normal hourly rate. My employees have agreed to take a cut in
pay
to enable me to pay them whatever amount is necessary if, when overtime is
applied, they average out to $7.00 per hour. In other words, they are
willing to work for 40 hours per week at x amount and a variable number of
hours for x*1.5 as long as the x +(x*1.5) averages $7.00 per hour.

This number x will change with each schedule since they will work a
different number of hours per schedule (ie an employee may work 55 hours
in
week one, 50 hours in week two, 60 hours in week three, and so on). Can
anyone help with a formula that will solve for x based on these changing
hours with the average rate of pay still staying at or around $7.00 per
hour?

Thank you,
Brad in Dallas

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,393
Default Formula assistance

Regular hours =R, at $X/hr earns RX
Overtime hours= N, at (1.5X)/hr, earns 1.5NX
Total earning = RX + 1.5NX; total hours = R+N
Average = (RX + 1.5NX)/(R+N)
This must be made equal to 7 by changing X
(RX + 1.5NX)/(R+N) = 7
(RX + 1.5NX)= 7(R+N)
X(R+1.5N) = 7(R+N)
X= 7(R+N)/(R+1.5N)

If R=40 and N=5 then X = 6.631579 $/hr
best wishes and I hope we get a good mark for OUR homework

--
Bernard V Liengme
Microsoft Excel MVP
www.stfx.ca/people/bliengme
remove caps from email

"Raisincain" wrote in message ...
Hello!

I have posted this question in the more appropriate formula assistance
forum, but since it seems infrequently visted compared to this forum, I
thought maybe someone here could offer some advice.

I have several employees that work for me at $7.00 per hour. They want to
work more hours per week at this same wage, but I am unable to afford
overtime for them.

Department of labor laws state that every hour over 40 per week must be paid
at 1.5 the normal hourly rate. My employees have agreed to take a cut in pay
to enable me to pay them whatever amount is necessary if, when overtime is
applied, they average out to $7.00 per hour. In other words, they are
willing to work for 40 hours per week at x amount and a variable number of
hours for x*1.5 as long as the x +(x*1.5) averages $7.00 per hour.

This number x will change with each schedule since they will work a
different number of hours per schedule (ie an employee may work 55 hours in
week one, 50 hours in week two, 60 hours in week three, and so on). Can
anyone help with a formula that will solve for x based on these changing
hours with the average rate of pay still staying at or around $7.00 per hour?

Thank you,
Brad in Dallas

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Formula assistance

Excellent work; thanks Roger!

"Roger Govier" wrote:

Hi

With Hours actually worked in A1, Standard price per hour ($7) in B1, and
A1*B1 in C1
then
=C1/((40+(A1-40)*1.5))
gives the value per hour to pay

So in A3 enter 40, in B3 enter the formula above and in C3 enter = A3*B3
in A4 enter =A1-A3, in B4 enter = B3*1.5, in C4 enter A4*B4

--

Regards
Roger Govier

"Raisincain" wrote in message
...
Hello!

I have posted this question in the more appropriate formula assistance
forum, but since it seems infrequently visted compared to this forum, I
thought maybe someone here could offer some advice.

I have several employees that work for me at $7.00 per hour. They want to
work more hours per week at this same wage, but I am unable to afford
overtime for them.

Department of labor laws state that every hour over 40 per week must be
paid
at 1.5 the normal hourly rate. My employees have agreed to take a cut in
pay
to enable me to pay them whatever amount is necessary if, when overtime is
applied, they average out to $7.00 per hour. In other words, they are
willing to work for 40 hours per week at x amount and a variable number of
hours for x*1.5 as long as the x +(x*1.5) averages $7.00 per hour.

This number x will change with each schedule since they will work a
different number of hours per schedule (ie an employee may work 55 hours
in
week one, 50 hours in week two, 60 hours in week three, and so on). Can
anyone help with a formula that will solve for x based on these changing
hours with the average rate of pay still staying at or around $7.00 per
hour?

Thank you,
Brad in Dallas


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Formula assistance

A+!!!

best wishes and I hope we get a good mark for OUR homework

--
Bernard V Liengme
Microsoft Excel MVP
www.stfx.ca/people/bliengme
remove caps from email

"Raisincain" wrote in message ...
Hello!

I have posted this question in the more appropriate formula assistance
forum, but since it seems infrequently visted compared to this forum, I
thought maybe someone here could offer some advice.

I have several employees that work for me at $7.00 per hour. They want to
work more hours per week at this same wage, but I am unable to afford
overtime for them.

Department of labor laws state that every hour over 40 per week must be paid
at 1.5 the normal hourly rate. My employees have agreed to take a cut in pay
to enable me to pay them whatever amount is necessary if, when overtime is
applied, they average out to $7.00 per hour. In other words, they are
willing to work for 40 hours per week at x amount and a variable number of
hours for x*1.5 as long as the x +(x*1.5) averages $7.00 per hour.

This number x will change with each schedule since they will work a
different number of hours per schedule (ie an employee may work 55 hours in
week one, 50 hours in week two, 60 hours in week three, and so on). Can
anyone help with a formula that will solve for x based on these changing
hours with the average rate of pay still staying at or around $7.00 per hour?

Thank you,
Brad in Dallas



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default Formula assistance

If you really thought it was homework, why did you respond?

If you didn't, and believe that he pays $7.00 per hour, and is ready to pay less, why did you respond?

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Bernard Liengme" wrote in message ...
Regular hours =R, at $X/hr earns RX
Overtime hours= N, at (1.5X)/hr, earns 1.5NX
Total earning = RX + 1.5NX; total hours = R+N
Average = (RX + 1.5NX)/(R+N)
This must be made equal to 7 by changing X
(RX + 1.5NX)/(R+N) = 7
(RX + 1.5NX)= 7(R+N)
X(R+1.5N) = 7(R+N)
X= 7(R+N)/(R+1.5N)

If R=40 and N=5 then X = 6.631579 $/hr
best wishes and I hope we get a good mark for OUR homework

--
Bernard V Liengme
Microsoft Excel MVP
www.stfx.ca/people/bliengme
remove caps from email

"Raisincain" wrote in message ...
Hello!

I have posted this question in the more appropriate formula assistance
forum, but since it seems infrequently visted compared to this forum, I
thought maybe someone here could offer some advice.

I have several employees that work for me at $7.00 per hour. They want to
work more hours per week at this same wage, but I am unable to afford
overtime for them.

Department of labor laws state that every hour over 40 per week must be paid
at 1.5 the normal hourly rate. My employees have agreed to take a cut in pay
to enable me to pay them whatever amount is necessary if, when overtime is
applied, they average out to $7.00 per hour. In other words, they are
willing to work for 40 hours per week at x amount and a variable number of
hours for x*1.5 as long as the x +(x*1.5) averages $7.00 per hour.

This number x will change with each schedule since they will work a
different number of hours per schedule (ie an employee may work 55 hours in
week one, 50 hours in week two, 60 hours in week three, and so on). Can
anyone help with a formula that will solve for x based on these changing
hours with the average rate of pay still staying at or around $7.00 per hour?

Thank you,
Brad in Dallas

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Formula assistance

There's a flaw in this scheme. I won't point it out since I don't agree with his tactics to cheat the employees.

--
Biff
Microsoft Excel MVP


"Bob Phillips" wrote in message ...
If you really thought it was homework, why did you respond?

If you didn't, and believe that he pays $7.00 per hour, and is ready to pay less, why did you respond?

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Bernard Liengme" wrote in message ...
Regular hours =R, at $X/hr earns RX
Overtime hours= N, at (1.5X)/hr, earns 1.5NX
Total earning = RX + 1.5NX; total hours = R+N
Average = (RX + 1.5NX)/(R+N)
This must be made equal to 7 by changing X
(RX + 1.5NX)/(R+N) = 7
(RX + 1.5NX)= 7(R+N)
X(R+1.5N) = 7(R+N)
X= 7(R+N)/(R+1.5N)

If R=40 and N=5 then X = 6.631579 $/hr
best wishes and I hope we get a good mark for OUR homework

--
Bernard V Liengme
Microsoft Excel MVP
www.stfx.ca/people/bliengme
remove caps from email

"Raisincain" wrote in message ...
Hello!

I have posted this question in the more appropriate formula assistance
forum, but since it seems infrequently visted compared to this forum, I
thought maybe someone here could offer some advice.

I have several employees that work for me at $7.00 per hour. They want to
work more hours per week at this same wage, but I am unable to afford
overtime for them.

Department of labor laws state that every hour over 40 per week must be paid
at 1.5 the normal hourly rate. My employees have agreed to take a cut in pay
to enable me to pay them whatever amount is necessary if, when overtime is
applied, they average out to $7.00 per hour. In other words, they are
willing to work for 40 hours per week at x amount and a variable number of
hours for x*1.5 as long as the x +(x*1.5) averages $7.00 per hour.

This number x will change with each schedule since they will work a
different number of hours per schedule (ie an employee may work 55 hours in
week one, 50 hours in week two, 60 hours in week three, and so on). Can
anyone help with a formula that will solve for x based on these changing
hours with the average rate of pay still staying at or around $7.00 per hour?

Thank you,
Brad in Dallas

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 524
Default Formula assistance

Sat, 8 Dec 2007 10:18:00 -0800 from Raisincain
:
I have posted this question in the more appropriate formula assistance
forum, but since it seems infrequently visted compared to this forum, I
thought maybe someone here could offer some advice.


Please don't multipost. If you must post to multiple groups,
crosspost so you don't waste people's time.

I answered your query in the functions group.

--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
"If there's one thing I know, it's men. I ought to: it's
been my life work." -- Marie Dressler, in /Dinner at Eight/
  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 524
Default Formula assistance

Sat, 8 Dec 2007 18:43:15 -0000 from Roger Govier
<roger@technology4unospamdotcodotuk:
With Hours actually worked in A1, Standard price per hour ($7) in B1, and
A1*B1 in C1
then
=C1/((40+(A1-40)*1.5))
gives the value per hour to pay

So in A3 enter 40, in B3 enter the formula above and in C3 enter = A3*B3
in A4 enter =A1-A3, in B4 enter = B3*1.5, in C4 enter A4*B4


Please note that this is almost certainly illegal under US and state
labor laws.

--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
"If there's one thing I know, it's men. I ought to: it's
been my life work." -- Marie Dressler, in /Dinner at Eight/
  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,393
Default Formula assistance

Because I was a teacher for 40 years.
--
Bernard V Liengme
Microsoft Excel MVP
www.stfx.ca/people/bliengme
remove caps from email

"Bob Phillips" wrote in message ...
If you really thought it was homework, why did you respond?

If you didn't, and believe that he pays $7.00 per hour, and is ready to pay less, why did you respond?

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Bernard Liengme" wrote in message ...
Regular hours =R, at $X/hr earns RX
Overtime hours= N, at (1.5X)/hr, earns 1.5NX
Total earning = RX + 1.5NX; total hours = R+N
Average = (RX + 1.5NX)/(R+N)
This must be made equal to 7 by changing X
(RX + 1.5NX)/(R+N) = 7
(RX + 1.5NX)= 7(R+N)
X(R+1.5N) = 7(R+N)
X= 7(R+N)/(R+1.5N)

If R=40 and N=5 then X = 6.631579 $/hr
best wishes and I hope we get a good mark for OUR homework

--
Bernard V Liengme
Microsoft Excel MVP
www.stfx.ca/people/bliengme
remove caps from email

"Raisincain" wrote in message ...
Hello!

I have posted this question in the more appropriate formula assistance
forum, but since it seems infrequently visted compared to this forum, I
thought maybe someone here could offer some advice.

I have several employees that work for me at $7.00 per hour. They want to
work more hours per week at this same wage, but I am unable to afford
overtime for them.

Department of labor laws state that every hour over 40 per week must be paid
at 1.5 the normal hourly rate. My employees have agreed to take a cut in pay
to enable me to pay them whatever amount is necessary if, when overtime is
applied, they average out to $7.00 per hour. In other words, they are
willing to work for 40 hours per week at x amount and a variable number of
hours for x*1.5 as long as the x +(x*1.5) averages $7.00 per hour.

This number x will change with each schedule since they will work a
different number of hours per schedule (ie an employee may work 55 hours in
week one, 50 hours in week two, 60 hours in week three, and so on). Can
anyone help with a formula that will solve for x based on these changing
hours with the average rate of pay still staying at or around $7.00 per hour?

Thank you,
Brad in Dallas



  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default Formula assistance

In all my days at school and at college, my teachers never did my homework!

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Bernard Liengme" wrote in message ...
Because I was a teacher for 40 years.
--
Bernard V Liengme
Microsoft Excel MVP
www.stfx.ca/people/bliengme
remove caps from email

"Bob Phillips" wrote in message ...
If you really thought it was homework, why did you respond?

If you didn't, and believe that he pays $7.00 per hour, and is ready to pay less, why did you respond?

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Bernard Liengme" wrote in message ...
Regular hours =R, at $X/hr earns RX
Overtime hours= N, at (1.5X)/hr, earns 1.5NX
Total earning = RX + 1.5NX; total hours = R+N
Average = (RX + 1.5NX)/(R+N)
This must be made equal to 7 by changing X
(RX + 1.5NX)/(R+N) = 7
(RX + 1.5NX)= 7(R+N)
X(R+1.5N) = 7(R+N)
X= 7(R+N)/(R+1.5N)

If R=40 and N=5 then X = 6.631579 $/hr
best wishes and I hope we get a good mark for OUR homework

--
Bernard V Liengme
Microsoft Excel MVP
www.stfx.ca/people/bliengme
remove caps from email

"Raisincain" wrote in message ...
Hello!

I have posted this question in the more appropriate formula assistance
forum, but since it seems infrequently visted compared to this forum, I
thought maybe someone here could offer some advice.

I have several employees that work for me at $7.00 per hour. They want to
work more hours per week at this same wage, but I am unable to afford
overtime for them.

Department of labor laws state that every hour over 40 per week must be paid
at 1.5 the normal hourly rate. My employees have agreed to take a cut in pay
to enable me to pay them whatever amount is necessary if, when overtime is
applied, they average out to $7.00 per hour. In other words, they are
willing to work for 40 hours per week at x amount and a variable number of
hours for x*1.5 as long as the x +(x*1.5) averages $7.00 per hour.

This number x will change with each schedule since they will work a
different number of hours per schedule (ie an employee may work 55 hours in
week one, 50 hours in week two, 60 hours in week three, and so on). Can
anyone help with a formula that will solve for x based on these changing
hours with the average rate of pay still staying at or around $7.00 per hour?

Thank you,
Brad in Dallas

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need assistance with a formula - If then??? Bookmdano Excel Worksheet Functions 3 October 3rd 07 07:52 PM
Formula Assistance Mharper New Users to Excel 2 July 11th 07 08:10 PM
Assistance with Formula Joe D. Excel Worksheet Functions 1 March 11th 06 04:03 AM
Formula Assistance ( MarthaMartha Excel Worksheet Functions 2 February 15th 06 05:49 PM
Formula Assistance Chris Cred via OfficeKB.com Excel Discussion (Misc queries) 7 January 20th 06 04:25 AM


All times are GMT +1. The time now is 06:37 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"