#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Time Calculation

Ok. Calculating a time sheet. Entries are as follows

Columns DEFG Have Time In, Time Out, Time In, Time Out headings. I
calculated total hours by: =(E5-D5)+(G5-F5) Have cell formatted as h:mm so
the time displays actual hours and minutes worked ex: 8:13 (8 Hours/13
Minutes). Now to that number I want to add additional time such as Sick
Leave 1 (hour), 1.5, .25. How can I calculate. If necessary I probably can
divide the additional time entrys into two cells with hours in one and
minutes in another. If you can help with calculation and cell formatting,
I would appreciate it.

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Time Calculation

g24 = 1.5
=(E25+F25)-(C25+D25)+G24/24

If this post helps click Yes
---------------
Jacob Skaria


"ap1971" wrote:

Ok. Calculating a time sheet. Entries are as follows

Columns DEFG Have Time In, Time Out, Time In, Time Out headings. I
calculated total hours by: =(E5-D5)+(G5-F5) Have cell formatted as h:mm so
the time displays actual hours and minutes worked ex: 8:13 (8 Hours/13
Minutes). Now to that number I want to add additional time such as Sick
Leave 1 (hour), 1.5, .25. How can I calculate. If necessary I probably can
divide the additional time entrys into two cells with hours in one and
minutes in another. If you can help with calculation and cell formatting,
I would appreciate it.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Time Calculation

I don't think so. (Hopefully the copy/paste below will come across OK)

4 D E F G H I J K
5 Start End Start End Total H M Total
6 7:52 AM 12:30 PM 1:25 PM 5:00 PM 8:13 1 30 9:43
7 7:00 AM 12:00 PM 12:30 PM 4:00 PM 8.00 30 8:30

Formula to calculate "H" is =(E6-D6)+(G6-F6)
"H" Cells formatted as h:mm

My desired answer is "K"


"Jacob Skaria" wrote:

g24 = 1.5
=(E25+F25)-(C25+D25)+G24/24

If this post helps click Yes
---------------
Jacob Skaria


"ap1971" wrote:

Ok. Calculating a time sheet. Entries are as follows

Columns DEFG Have Time In, Time Out, Time In, Time Out headings. I
calculated total hours by: =(E5-D5)+(G5-F5) Have cell formatted as h:mm so
the time displays actual hours and minutes worked ex: 8:13 (8 Hours/13
Minutes). Now to that number I want to add additional time such as Sick
Leave 1 (hour), 1.5, .25. How can I calculate. If necessary I probably can
divide the additional time entrys into two cells with hours in one and
minutes in another. If you can help with calculation and cell formatting,
I would appreciate it.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Time Calculation

Try the formula in K6

=H6+(I6/24)+(J6/1440)

and format the total cells to custom format [h]:mm so that anything more
than 24 are displayed as so.

If this post helps click Yes
---------------
Jacob Skaria


"ap1971" wrote:

I don't think so. (Hopefully the copy/paste below will come across OK)

4 D E F G H I J K
5 Start End Start End Total H M Total
6 7:52 AM 12:30 PM 1:25 PM 5:00 PM 8:13 1 30 9:43
7 7:00 AM 12:00 PM 12:30 PM 4:00 PM 8.00 30 8:30

Formula to calculate "H" is =(E6-D6)+(G6-F6)
"H" Cells formatted as h:mm

My desired answer is "K"


"Jacob Skaria" wrote:

g24 = 1.5
=(E25+F25)-(C25+D25)+G24/24

If this post helps click Yes
---------------
Jacob Skaria


"ap1971" wrote:

Ok. Calculating a time sheet. Entries are as follows

Columns DEFG Have Time In, Time Out, Time In, Time Out headings. I
calculated total hours by: =(E5-D5)+(G5-F5) Have cell formatted as h:mm so
the time displays actual hours and minutes worked ex: 8:13 (8 Hours/13
Minutes). Now to that number I want to add additional time such as Sick
Leave 1 (hour), 1.5, .25. How can I calculate. If necessary I probably can
divide the additional time entrys into two cells with hours in one and
minutes in another. If you can help with calculation and cell formatting,
I would appreciate it.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Time Calculation

Thanks that worked. Not trying to sum all of my totals using simple
=SUM(K6:K10)
and it is not correct. What do you suggest as the formula?


My

"Jacob Skaria" wrote:

Try the formula in K6

=H6+(I6/24)+(J6/1440)

and format the total cells to custom format [h]:mm so that anything more
than 24 are displayed as so.

If this post helps click Yes
---------------
Jacob Skaria


"ap1971" wrote:

I don't think so. (Hopefully the copy/paste below will come across OK)

4 D E F G H I J K
5 Start End Start End Total H M Total
6 7:52 AM 12:30 PM 1:25 PM 5:00 PM 8:13 1 30 9:43
7 7:00 AM 12:00 PM 12:30 PM 4:00 PM 8.00 30 8:30

Formula to calculate "H" is =(E6-D6)+(G6-F6)
"H" Cells formatted as h:mm

My desired answer is "K"


"Jacob Skaria" wrote:

g24 = 1.5
=(E25+F25)-(C25+D25)+G24/24

If this post helps click Yes
---------------
Jacob Skaria


"ap1971" wrote:

Ok. Calculating a time sheet. Entries are as follows

Columns DEFG Have Time In, Time Out, Time In, Time Out headings. I
calculated total hours by: =(E5-D5)+(G5-F5) Have cell formatted as h:mm so
the time displays actual hours and minutes worked ex: 8:13 (8 Hours/13
Minutes). Now to that number I want to add additional time such as Sick
Leave 1 (hour), 1.5, .25. How can I calculate. If necessary I probably can
divide the additional time entrys into two cells with hours in one and
minutes in another. If you can help with calculation and cell formatting,
I would appreciate it.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Time Calculation

Read my earlier post in full ..You have missed the below..Right click the
cellFormat CellsCustomType:
[h]:mm

If this post helps click Yes
---------------
Jacob Skaria


"ap1971" wrote:

Thanks that worked. Not trying to sum all of my totals using simple
=SUM(K6:K10)
and it is not correct. What do you suggest as the formula?


My

"Jacob Skaria" wrote:

Try the formula in K6

=H6+(I6/24)+(J6/1440)

and format the total cells to custom format [h]:mm so that anything more
than 24 are displayed as so.

If this post helps click Yes
---------------
Jacob Skaria


"ap1971" wrote:

I don't think so. (Hopefully the copy/paste below will come across OK)

4 D E F G H I J K
5 Start End Start End Total H M Total
6 7:52 AM 12:30 PM 1:25 PM 5:00 PM 8:13 1 30 9:43
7 7:00 AM 12:00 PM 12:30 PM 4:00 PM 8.00 30 8:30

Formula to calculate "H" is =(E6-D6)+(G6-F6)
"H" Cells formatted as h:mm

My desired answer is "K"


"Jacob Skaria" wrote:

g24 = 1.5
=(E25+F25)-(C25+D25)+G24/24

If this post helps click Yes
---------------
Jacob Skaria


"ap1971" wrote:

Ok. Calculating a time sheet. Entries are as follows

Columns DEFG Have Time In, Time Out, Time In, Time Out headings. I
calculated total hours by: =(E5-D5)+(G5-F5) Have cell formatted as h:mm so
the time displays actual hours and minutes worked ex: 8:13 (8 Hours/13
Minutes). Now to that number I want to add additional time such as Sick
Leave 1 (hour), 1.5, .25. How can I calculate. If necessary I probably can
divide the additional time entrys into two cells with hours in one and
minutes in another. If you can help with calculation and cell formatting,
I would appreciate it.

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Time Calculation

Thought it would be easier to display. Hopefully copy/paste works. See below

4 D E F G H I J K
5 Start End Start End Total H M Total
6 7:52 AM 12:30 PM 1:25 PM 5:00 PM 8:13 1 30 9:43
7 7:00 AM 12:00 PM 12:30 PM 4:00 PM 8.00 30 8:30


Formula for H =(E6-D6)+(G6-F6)
Formatted as h:mm

K is my desired result

"Jacob Skaria" wrote:

g24 = 1.5
=(E25+F25)-(C25+D25)+G24/24

If this post helps click Yes
---------------
Jacob Skaria


"ap1971" wrote:

Ok. Calculating a time sheet. Entries are as follows

Columns DEFG Have Time In, Time Out, Time In, Time Out headings. I
calculated total hours by: =(E5-D5)+(G5-F5) Have cell formatted as h:mm so
the time displays actual hours and minutes worked ex: 8:13 (8 Hours/13
Minutes). Now to that number I want to add additional time such as Sick
Leave 1 (hour), 1.5, .25. How can I calculate. If necessary I probably can
divide the additional time entrys into two cells with hours in one and
minutes in another. If you can help with calculation and cell formatting,
I would appreciate it.

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Time Calculation

I want to add additional time such as
Sick Leave 1 (hour), 1.5, .25.


If you use an additional cell and enter the amount to add as a decimal
number:

=(your_formula)+cell_ref/24

A1 = 0.25 (15 minutes)

=(your_formula)+A1/24

--
Biff
Microsoft Excel MVP


"ap1971" wrote in message
...
Ok. Calculating a time sheet. Entries are as follows

Columns DEFG Have Time In, Time Out, Time In, Time Out headings. I
calculated total hours by: =(E5-D5)+(G5-F5) Have cell formatted as h:mm
so
the time displays actual hours and minutes worked ex: 8:13 (8 Hours/13
Minutes). Now to that number I want to add additional time such as
Sick
Leave 1 (hour), 1.5, .25. How can I calculate. If necessary I probably
can
divide the additional time entrys into two cells with hours in one and
minutes in another. If you can help with calculation and cell
formatting,
I would appreciate it.



  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default Time Calculation

Hi,

Say your formula is in cell F8. In cell F10, you type 1.5. In cell F12,
you may enter =TIME(,F10*60,)+F8

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"ap1971" wrote in message
...
Ok. Calculating a time sheet. Entries are as follows

Columns DEFG Have Time In, Time Out, Time In, Time Out headings. I
calculated total hours by: =(E5-D5)+(G5-F5) Have cell formatted as h:mm
so
the time displays actual hours and minutes worked ex: 8:13 (8 Hours/13
Minutes). Now to that number I want to add additional time such as
Sick
Leave 1 (hour), 1.5, .25. How can I calculate. If necessary I probably
can
divide the additional time entrys into two cells with hours in one and
minutes in another. If you can help with calculation and cell
formatting,
I would appreciate it.

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
Time Calculation Sj Excel Discussion (Misc queries) 7 October 29th 08 01:17 PM
Stop time - start time calculation squack21 Excel Worksheet Functions 5 December 10th 07 03:20 PM
Time calculation (Subraction of Idle Time) Ajay Excel Discussion (Misc queries) 6 March 4th 07 11:54 AM
Ignoring Time in a Date Time Calculation nmp Excel Worksheet Functions 3 November 23rd 05 08:32 PM
time calculation with military time Ron Thetford Excel Worksheet Functions 8 July 29th 05 07:24 PM


All times are GMT +1. The time now is 06:47 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"