Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What I'm trying to do is take a cell with the time at 13:30 and then what I
need to do in the next cell to the right is show no more then 8 hours, then the next cell to the right of that must show the overage which would be 5.5 hours. If there is any help please let me know . Here is what I'm trying to do for an example. D5 is 13:30, E5 would be 8 then F5 would be 5.5 If time was less then 8 hour it would be D5 7, E5 would be 7 and F5 would be 0. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
hi, Dennis !
What I'm trying to do is take a cell with the time at 13:30 and then what I need to do in the next cell to the right is show no more then 8 hours then the next cell to the right of that must show the overage which would be 5.5 hours. If there is any help please let me know . Here is what I'm trying to do for an example. D5 is 13:30, E5 would be 8 then F5 would be 5.5 If time was less then 8 hour it would be D5 7, E5 would be 7 and F5 would be 0. [E5] =min(d5,8/24) [F5] = d5-e5 hth, hector. p.s. you could review your previous post (yesterday) :) |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
hi (again), Dennis !
other approach, if you don't want to see time format in the result cells.. [E5] =min(hour(d5),8) [F5] =d5*24-e5 probably F5 needs to be (re)formatted hth, hector. __ OP __ What I'm trying to do is take a cell with the time at 13:30 and then what I need to do in the next cell to the right is show no more then 8 hours then the next cell to the right of that must show the overage which would be 5.5 hours. If there is any help please let me know . Here is what I'm trying to do for an example. D5 is 13:30, E5 would be 8 then F5 would be 5.5 If time was less then 8 hour it would be D5 7, E5 would be 7 and F5 would be 0. [E5] =min(d5,8/24) [F5] = d5-e5 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I add 24 hours to a date and time value formated cell? | Excel Discussion (Misc queries) | |||
Change time h:mm to a decimal number based on hours | Excel Worksheet Functions | |||
making copied cells change with change in original cell | Excel Worksheet Functions | |||
How can I change time format to decimal without losing hours? | Excel Discussion (Misc queries) | |||
Making one cell change with each spreadsheet use? | Excel Discussion (Misc queries) |