ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Calculating Hourly Rate (https://www.excelbanter.com/excel-discussion-misc-queries/168449-calculating-hourly-rate.html)

Railrd

Calculating Hourly Rate
 
In column "B" I have the amount someone is paid for a job. In column "C" I
have how many hours they worked on that particular job. In column "D" I
would like to display how much they got paid per hour. I have tried several
different ways but get the wrong answer or an error message.

Wigi

Calculating Hourly Rate
 
Hi

Select cell D1.

Type:

=B1/C1

and hit the Enter button of your keyboard. Does the result make sense now?

(of course, if your numbers are not in row 1 but elsewhere, then you should
change the 1's in my formula.)

--
Wigi
http://www.wimgielis.be = Excel/VBA, soccer and music


"Railrd" wrote:

In column "B" I have the amount someone is paid for a job. In column "C" I
have how many hours they worked on that particular job. In column "D" I
would like to display how much they got paid per hour. I have tried several
different ways but get the wrong answer or an error message.


Railrd

Calculating Hourly Rate
 
This does not give the correct answer

"Wigi" wrote:

Hi

Select cell D1.

Type:

=B1/C1

and hit the Enter button of your keyboard. Does the result make sense now?

(of course, if your numbers are not in row 1 but elsewhere, then you should
change the 1's in my formula.)

--
Wigi
http://www.wimgielis.be = Excel/VBA, soccer and music


"Railrd" wrote:

In column "B" I have the amount someone is paid for a job. In column "C" I
have how many hours they worked on that particular job. In column "D" I
would like to display how much they got paid per hour. I have tried several
different ways but get the wrong answer or an error message.


Wigi

Calculating Hourly Rate
 
That is not true.

(If you give so few information in your post, then I can't say more than
this).


--
Wigi
http://www.wimgielis.be = Excel/VBA, soccer and music


"Railrd" wrote:

This does not give the correct answer

"Wigi" wrote:

Hi

Select cell D1.

Type:

=B1/C1

and hit the Enter button of your keyboard. Does the result make sense now?

(of course, if your numbers are not in row 1 but elsewhere, then you should
change the 1's in my formula.)

--
Wigi
http://www.wimgielis.be = Excel/VBA, soccer and music


"Railrd" wrote:

In column "B" I have the amount someone is paid for a job. In column "C" I
have how many hours they worked on that particular job. In column "D" I
would like to display how much they got paid per hour. I have tried several
different ways but get the wrong answer or an error message.


Niek Otten

Calculating Hourly Rate
 
If the hours are entered as "real" Excel times, then you need to multiply them by 24 to get correct results from your division,
and you'll have to format them as numbers, not as time (which Excel does automatically)

=B1/(C1*24)

--
Kind regards,

Niek Otten
Microsoft MVP - Excel



"Railrd" wrote in message ...
| In column "B" I have the amount someone is paid for a job. In column "C" I
| have how many hours they worked on that particular job. In column "D" I
| would like to display how much they got paid per hour. I have tried several
| different ways but get the wrong answer or an error message.



Peo Sjoblom

Calculating Hourly Rate
 
It works but it all depends on if the hours are in time format like 4:30 for
4.5 hours, if so use

=B1/(C1*24)

and format as currency


or better


=ROUND(B1/(C1*24),2)

rounded to the nearest penny



if the hours are decimals like 4 or 5 then it should work



--


Regards,


Peo Sjoblom


"Railrd" wrote in message
...
This does not give the correct answer

"Wigi" wrote:

Hi

Select cell D1.

Type:

=B1/C1

and hit the Enter button of your keyboard. Does the result make sense
now?

(of course, if your numbers are not in row 1 but elsewhere, then you
should
change the 1's in my formula.)

--
Wigi
http://www.wimgielis.be = Excel/VBA, soccer and music


"Railrd" wrote:

In column "B" I have the amount someone is paid for a job. In column
"C" I
have how many hours they worked on that particular job. In column "D"
I
would like to display how much they got paid per hour. I have tried
several
different ways but get the wrong answer or an error message.




Railrd

Calculating Hourly Rate
 
I'm sorry. In column B for example the person was paid $346.83 (cell
formated in Accounting with two places after decimal point) and in column C
for example is 5:43 (cell formated in Time with the option of 13:30 format
selected). I'm using Excel 2007. Wigi when I tried the way you suggested it
gives me a larger dollar amount (takes hours as a fraction of day) but when
multiplied it still gives the wrong answer. Sorry for the confusion.

"Wigi" wrote:

That is not true.

(If you give so few information in your post, then I can't say more than
this).


--
Wigi
http://www.wimgielis.be = Excel/VBA, soccer and music


"Railrd" wrote:

This does not give the correct answer

"Wigi" wrote:

Hi

Select cell D1.

Type:

=B1/C1

and hit the Enter button of your keyboard. Does the result make sense now?

(of course, if your numbers are not in row 1 but elsewhere, then you should
change the 1's in my formula.)

--
Wigi
http://www.wimgielis.be = Excel/VBA, soccer and music


"Railrd" wrote:

In column "B" I have the amount someone is paid for a job. In column "C" I
have how many hours they worked on that particular job. In column "D" I
would like to display how much they got paid per hour. I have tried several
different ways but get the wrong answer or an error message.


David Biddulph[_2_]

Calculating Hourly Rate
 
You are high in the list of nominations for the most unhelpful response in
the group this month. Saying merely "This does not give the correct answer"
does not give the contributors to the group (who are very willing to help) a
great deal of chance to help you, particularly when the answer you were
given is the correct answer to the question you asked.

If you really do want help, you'll have to give more information, as there
is a limit to the clairvoyant powers of even the brightest experts in the
group. Why not start with things like:
What values you have in B1 and in C1, what value you got from the suggested
formula in D1, and what answer you expected?

One specific question is about column C. Are you sure that it contains "how
many hours they worked on that particular job"? If it is not a number of
hours, but a time in Excel format, then you will need a factor of 24 in your
formula.
--
David Biddulph

"Railrd" wrote in message
...
This does not give the correct answer

"Wigi" wrote:

Hi

Select cell D1.

Type:

=B1/C1

and hit the Enter button of your keyboard. Does the result make sense
now?

(of course, if your numbers are not in row 1 but elsewhere, then you
should
change the 1's in my formula.)

--
Wigi
http://www.wimgielis.be = Excel/VBA, soccer and music


"Railrd" wrote:

In column "B" I have the amount someone is paid for a job. In column
"C" I
have how many hours they worked on that particular job. In column "D"
I
would like to display how much they got paid per hour. I have tried
several
different ways but get the wrong answer or an error message.





All times are GMT +1. The time now is 10:09 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com