Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 160
Default Timecard question

I have a timecard set up to calculate my par period hours, but can't figure
out how to take the total hours (say 68:00) and multiply it by the rate of
pay (say $20.00 per hour) and come up with the correct total pay ($1,360.00).
Here is how it is set up:

column d1:6 is formatted as [hh]:mm

a1 = Monday; b1 = start time (9:00 AM); c1 = end time (5:00 PM); d1 = total
daily hours (8:00)
a2 = Tuesday; b2 = start time (9:00 AM); c2 = end time (5:00 PM); d2 = total
daily hours (8:00)
a3 = Wednesday; etc...
a4 = Thursday; etc...
a5 = Friday; etc...

d6 = total weekly hours (40:00) =SUM(d2:d5)
d7 = rate of pay ($20.00) formatted as accounting
d8 = total pay ($800.00) formatted as accounting

The problem arises when I try to multiply d6 and d7. d8 actually arrives at
$28.33 instead of the $800.00 that it should be.

Is there a way of resolving this?

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Timecard question

=SUM(D1:D5)*24*D7
format as General

"Patrick" wrote:

I have a timecard set up to calculate my par period hours, but can't figure
out how to take the total hours (say 68:00) and multiply it by the rate of
pay (say $20.00 per hour) and come up with the correct total pay ($1,360.00).
Here is how it is set up:

column d1:6 is formatted as [hh]:mm

a1 = Monday; b1 = start time (9:00 AM); c1 = end time (5:00 PM); d1 = total
daily hours (8:00)
a2 = Tuesday; b2 = start time (9:00 AM); c2 = end time (5:00 PM); d2 = total
daily hours (8:00)
a3 = Wednesday; etc...
a4 = Thursday; etc...
a5 = Friday; etc...

d6 = total weekly hours (40:00) =SUM(d2:d5)
d7 = rate of pay ($20.00) formatted as accounting
d8 = total pay ($800.00) formatted as accounting

The problem arises when I try to multiply d6 and d7. d8 actually arrives at
$28.33 instead of the $800.00 that it should be.

Is there a way of resolving this?

Thanks

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 26
Default Timecard question

In D8 try

=D6*D7*24

VBA Noob


Patrick wrote:
I have a timecard set up to calculate my par period hours, but can't figure
out how to take the total hours (say 68:00) and multiply it by the rate of
pay (say $20.00 per hour) and come up with the correct total pay ($1,360.00).
Here is how it is set up:

column d1:6 is formatted as [hh]:mm

a1 = Monday; b1 = start time (9:00 AM); c1 = end time (5:00 PM); d1 = total
daily hours (8:00)
a2 = Tuesday; b2 = start time (9:00 AM); c2 = end time (5:00 PM); d2 = total
daily hours (8:00)
a3 = Wednesday; etc...
a4 = Thursday; etc...
a5 = Friday; etc...

d6 = total weekly hours (40:00) =SUM(d2:d5)
d7 = rate of pay ($20.00) formatted as accounting
d8 = total pay ($800.00) formatted as accounting

The problem arises when I try to multiply d6 and d7. d8 actually arrives at
$28.33 instead of the $800.00 that it should be.

Is there a way of resolving this?

Thanks


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 160
Default Timecard question

This brings back an answer of 53.33... Am I doing something wrong? What is
the 24?

Thanks for your help... :)


"Teethless mama" wrote:

=SUM(D1:D5)*24*D7
format as General

"Patrick" wrote:

I have a timecard set up to calculate my par period hours, but can't figure
out how to take the total hours (say 68:00) and multiply it by the rate of
pay (say $20.00 per hour) and come up with the correct total pay ($1,360.00).
Here is how it is set up:

column d1:6 is formatted as [hh]:mm

a1 = Monday; b1 = start time (9:00 AM); c1 = end time (5:00 PM); d1 = total
daily hours (8:00)
a2 = Tuesday; b2 = start time (9:00 AM); c2 = end time (5:00 PM); d2 = total
daily hours (8:00)
a3 = Wednesday; etc...
a4 = Thursday; etc...
a5 = Friday; etc...

d6 = total weekly hours (40:00) =SUM(d2:d5)
d7 = rate of pay ($20.00) formatted as accounting
d8 = total pay ($800.00) formatted as accounting

The problem arises when I try to multiply d6 and d7. d8 actually arrives at
$28.33 instead of the $800.00 that it should be.

Is there a way of resolving this?

Thanks

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 618
Default Timecard question

What you are doing wrong is not multiplying by 24. If you multiply your
53.33 by 24 you get 800. There are 24 hours in a day, and Excel's time
format is in fractions of a day.
--
David Biddulph

"Patrick" wrote in message
...
This brings back an answer of 53.33... Am I doing something wrong? What
is
the 24?

Thanks for your help... :)


"Teethless mama" wrote:

=SUM(D1:D5)*24*D7
format as General

"Patrick" wrote:

I have a timecard set up to calculate my par period hours, but can't
figure
out how to take the total hours (say 68:00) and multiply it by the rate
of
pay (say $20.00 per hour) and come up with the correct total pay
($1,360.00).
Here is how it is set up:

column d1:6 is formatted as [hh]:mm

a1 = Monday; b1 = start time (9:00 AM); c1 = end time (5:00 PM); d1 =
total
daily hours (8:00)
a2 = Tuesday; b2 = start time (9:00 AM); c2 = end time (5:00 PM); d2 =
total
daily hours (8:00)
a3 = Wednesday; etc...
a4 = Thursday; etc...
a5 = Friday; etc...

d6 = total weekly hours (40:00) =SUM(d2:d5)
d7 = rate of pay ($20.00) formatted as accounting
d8 = total pay ($800.00) formatted as accounting

The problem arises when I try to multiply d6 and d7. d8 actually
arrives at
$28.33 instead of the $800.00 that it should be.

Is there a way of resolving this?

Thanks





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 160
Default Timecard question

Well it all sounds so simple now... Thanks it's working fine now.



"VBA Noob" wrote:

In D8 try

=D6*D7*24

VBA Noob


Patrick wrote:
I have a timecard set up to calculate my par period hours, but can't figure
out how to take the total hours (say 68:00) and multiply it by the rate of
pay (say $20.00 per hour) and come up with the correct total pay ($1,360.00).
Here is how it is set up:

column d1:6 is formatted as [hh]:mm

a1 = Monday; b1 = start time (9:00 AM); c1 = end time (5:00 PM); d1 = total
daily hours (8:00)
a2 = Tuesday; b2 = start time (9:00 AM); c2 = end time (5:00 PM); d2 = total
daily hours (8:00)
a3 = Wednesday; etc...
a4 = Thursday; etc...
a5 = Friday; etc...

d6 = total weekly hours (40:00) =SUM(d2:d5)
d7 = rate of pay ($20.00) formatted as accounting
d8 = total pay ($800.00) formatted as accounting

The problem arises when I try to multiply d6 and d7. d8 actually arrives at
$28.33 instead of the $800.00 that it should be.

Is there a way of resolving this?

Thanks



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
Possibly a loaded question, but I think mileslit Excel Discussion (Misc queries) 1 September 10th 05 01:18 AM
How do I find and replace a question mark in Excel? Ranpalandil Excel Discussion (Misc queries) 1 September 7th 05 10:20 PM
Newbie With A Question Michael Excel Worksheet Functions 0 July 28th 05 11:50 PM
Anybody Help with previous question Anthony Excel Discussion (Misc queries) 1 July 26th 05 01:26 PM
Hints And Tips For New Posters In The Excel Newsgroups Gary Brown Excel Worksheet Functions 0 April 15th 05 05:47 PM


All times are GMT +1. The time now is 04:37 PM.

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"