Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Short on time and money.
 
Posts: n/a
Default Time Sheet turmoil.

We log our time as h.1, h.2, h.3. Each .1 is equal to .25 or 15 minutes. I
would like to have the time sheet auto calculate the hours worked each day
and put that total in the total column. I've tried to format the cell as 0
?/4 but it still sees the number after the decimal as a tenth.
  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default

Is it not just

=SUM(A2:A20)*2.5
--

HTH

RP
(remove nothere from the email address if mailing direct)


"Short on time and money." <Short on time and
wrote in message
...
We log our time as h.1, h.2, h.3. Each .1 is equal to .25 or 15 minutes.

I
would like to have the time sheet auto calculate the hours worked each day
and put that total in the total column. I've tried to format the cell as

0
?/4 but it still sees the number after the decimal as a tenth.



  #3   Report Post  
Short on time and money.
 
Posts: n/a
Default

Your answer would multiply the hours as well as the partial hours.

"Bob Phillips" wrote:

Is it not just

=SUM(A2:A20)*2.5
--

HTH

RP
(remove nothere from the email address if mailing direct)


"Short on time and money." <Short on time and
wrote in message
...
We log our time as h.1, h.2, h.3. Each .1 is equal to .25 or 15 minutes.

I
would like to have the time sheet auto calculate the hours worked each day
and put that total in the total column. I've tried to format the cell as

0
?/4 but it still sees the number after the decimal as a tenth.




  #4   Report Post  
Bob Phillips
 
Posts: n/a
Default

You didn't mention that part about hours as well.

Try this array formula

=SUM(INT(A2:A20))+SUM(MOD(A2:A20,1))*2.5

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Short on time and money."
wrote in message ...
Your answer would multiply the hours as well as the partial hours.

"Bob Phillips" wrote:

Is it not just

=SUM(A2:A20)*2.5
--

HTH

RP
(remove nothere from the email address if mailing direct)


"Short on time and money." <Short on time and
wrote in message
...
We log our time as h.1, h.2, h.3. Each .1 is equal to .25 or 15

minutes.
I
would like to have the time sheet auto calculate the hours worked each

day
and put that total in the total column. I've tried to format the cell

as
0
?/4 but it still sees the number after the decimal as a tenth.






  #5   Report Post  
Arvi Laanemets
 
Posts: n/a
Default

Hi

An array formula (entered with Ctrl+Shift+Enter) like (entries not out of
range A1:A100, the cell with formula formatted as Custom "[h]:mm")
=SUM(TIME(INT(A1:A100);MOD(A1:A100;1)*150;0))

But you avoid a lot of trouble simply using normal time format, like "h.mm".



Arvi Laanemets



"Short on time and money." <Short on time and
wrote in message
...
We log our time as h.1, h.2, h.3. Each .1 is equal to .25 or 15 minutes.

I
would like to have the time sheet auto calculate the hours worked each day
and put that total in the total column. I've tried to format the cell as

0
?/4 but it still sees the number after the decimal as a tenth.





  #6   Report Post  
Short on time and money.
 
Posts: n/a
Default

That may be a good idea, but I can't get it to work. I guess I'm not Excel
savy enough to figure it out.

"Arvi Laanemets" wrote:

Hi

An array formula (entered with Ctrl+Shift+Enter) like (entries not out of
range A1:A100, the cell with formula formatted as Custom "[h]:mm")
=SUM(TIME(INT(A1:A100);MOD(A1:A100;1)*150;0))

But you avoid a lot of trouble simply using normal time format, like "h.mm".



Arvi Laanemets



"Short on time and money." <Short on time and
wrote in message
...
We log our time as h.1, h.2, h.3. Each .1 is equal to .25 or 15 minutes.

I
would like to have the time sheet auto calculate the hours worked each day
and put that total in the total column. I've tried to format the cell as

0
?/4 but it still sees the number after the decimal as a tenth.




  #7   Report Post  
Arvi Laanemets
 
Posts: n/a
Default

Hi

Then don't be so sparse with useful info! P.e. description of your table
will be a great help - where are time values stored (at least column), how
are hours for different days identified/positioned (date column, or every
day in different column), etc.


Arvi Laanemets


"Short on time and money."
wrote in message ...
That may be a good idea, but I can't get it to work. I guess I'm not

Excel
savy enough to figure it out.

"Arvi Laanemets" wrote:

Hi

An array formula (entered with Ctrl+Shift+Enter) like (entries not out

of
range A1:A100, the cell with formula formatted as Custom "[h]:mm")
=SUM(TIME(INT(A1:A100);MOD(A1:A100;1)*150;0))

But you avoid a lot of trouble simply using normal time format, like

"h.mm".



Arvi Laanemets



"Short on time and money." <Short on time and
wrote in message
...
We log our time as h.1, h.2, h.3. Each .1 is equal to .25 or 15

minutes.
I
would like to have the time sheet auto calculate the hours worked each

day
and put that total in the total column. I've tried to format the cell

as
0
?/4 but it still sees the number after the decimal as a tenth.






  #8   Report Post  
Arvi Laanemets
 
Posts: n/a
Default

Hi

Replace semicolons in formula with commas (sorry, I did forget to do so
before sending the answer)


--
Arvi Laanemets
( My real mail address: arvil<attarkon.ee )


"Short on time and money."
wrote in message ...
That may be a good idea, but I can't get it to work. I guess I'm not
Excel
savy enough to figure it out.

"Arvi Laanemets" wrote:

Hi

An array formula (entered with Ctrl+Shift+Enter) like (entries not out of
range A1:A100, the cell with formula formatted as Custom "[h]:mm")
=SUM(TIME(INT(A1:A100);MOD(A1:A100;1)*150;0))

But you avoid a lot of trouble simply using normal time format, like
"h.mm".



Arvi Laanemets



"Short on time and money." <Short on time and
wrote in message
...
We log our time as h.1, h.2, h.3. Each .1 is equal to .25 or 15
minutes.

I
would like to have the time sheet auto calculate the hours worked each
day
and put that total in the total column. I've tried to format the cell
as

0
?/4 but it still sees the number after the decimal as a tenth.






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
Formula to deduct unpaid breaks in time sheet Rick Excel Discussion (Misc queries) 3 August 26th 05 11:53 PM
time sheet calculations emmcee Excel Worksheet Functions 7 August 20th 05 12:26 PM
Excel formula for a time sheet HRMSN Excel Worksheet Functions 1 August 10th 05 03:07 PM
Is there a time sheet template that calculates hours? CTG Excel Discussion (Misc queries) 2 February 24th 05 08:49 PM
Time Sheet calculations dkostel Excel Worksheet Functions 2 November 23rd 04 10:11 PM


All times are GMT +1. The time now is 12:21 AM.

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

About Us

"It's about Microsoft Excel"