Trying again for time in tenths of an hour.

cblincoln43

Board Regular
Joined
Mar 12, 2002
Messages
206
The numbers i use are in tenth of an hour, the time is for starting time (-) ending time (=) hours. or,
...f7.........e7...(=)...g7.
..5:30pm....2:00am.(=).8.5hrs.
I need:
...5.5pm... 2.0am .(=).8.5 hrs.
I have tryed formating cells to costom 0.00"hours"
in g7,,,=if(f7-e7<0,f7-e7+1,f7-e7)*24. and it returns #VALUE, in g7. I can't seem to get this problem past the midnight hour without creating a 36 hour day.
What am i doing wrong or can i get this thing to give me tenths for time?
This message was edited by cblincoln43 on 2002-04-07 05:32
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Hi there

Not sure I fully understand what you mean by tenths of an hour format, but you need to use an if statement when time falls into the following day.

From 10pm to 2am you use an if statement that says - If the first time is greater than the second time, add 12 hours to the second time before deducting the first time (add 24 hours if using military time).

hope this helps
regards
Derek
 
Upvote 0
search as ? don' mean to be to dumn as thats what ive been doing for a day or two.
In tenth the time changes every 6 min.
This message was edited by cblincoln43 on 2002-04-07 05:55
 
Upvote 0
On 2002-04-07 05:31, cblincoln43 wrote:
The numbers i use are in tenth of an hour, the time is for starting time (-) ending time (=) hours. or,
...f7.........e7...(=)...g7.
..5:30pm....2:00am.(=).8.5hrs.
I need:
...5.5pm... 2.0am .(=).8.5 hrs.
I have tryed formating cells to costom 0.00"hours"
in g7,,,=if(f7-e7<0,f7-e7+1,f7-e7)*24. and it returns #VALUE, in g7. I can't seem to get this problem past the midnight hour without creating a 36 hour day.
What am i doing wrong or can i get this thing to give me tenths for time?
This message was edited by cblincoln43 on 2002-04-07 05:32

State clearly what you have in E7 and F7. Which is start time and which is the end time? The best way to do this is: Select an empty cell, type =, select 5 rows data from E and F (including labels), hit F9, copy waht you see, and paste the copied bit in the follow up. It seems: you want to compute the difference between E and F values in G where the results must be in decimal times. Right?
 
Upvote 0
Right, as in g7,,,=sum(f7-e7) only in time that will be in tenths of an hour and go past the midnight hour.
 
Upvote 0
On 2002-04-07 06:55, cblincoln43 wrote:
Right, as in g7,,,=sum(f7-e7) only in time that will be in tenths of an hour and go past the midnight hour.

In G7 enter:

=(F7+(F7<E7)-E7)*24

Format G7 as General.

BTW, I wonder why you did not (want to) "Select an empty cell, type =, select 5 rows data from E and F (including labels), hit F9, copy waht you see, and paste the copied bit in the follow up."
This message was edited by Aladin Akyurek on 2002-04-07 07:24
 
Upvote 0
Aladin, simply had not tryed it yet. The formula in last post? looks like what im using only ive had to creat a 36 hour day to make it work. as in 5:00pm=17.0 and 2:00am=26.0. so i have to go beyond the normal 24hour day.
Dave, In your post did you mean =if(f7<0.5,f7*24,f7-0.5)*24 or =if(f7<0.5,f9-f7*24,f9-0.5)*24 ??
This message was edited by cblincoln43 on 2002-04-07 07:28
 
Upvote 0
On 2002-04-07 07:22, cblincoln43 wrote:
Aladin, simply had not tryed it yet. The formula in last post? looks like what im using only ive had to creat a 36 hour day to make it work. as in 5:00pm=17.0 and 2:00am=26.0. so i have to go beyond the normal 24hour day.

Try the formula I posted (Now, you should see the whole formula, uncrippled by HTML).
 
Upvote 0

Forum statistics

Threads
1,214,540
Messages
6,120,107
Members
448,945
Latest member
Vmanchoppy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top