Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am looking at invoices that have captured time spent on activity,
the system reports duration in hr min sec ( 5:47:06). I need to convert this into a numbers that I can manipulate I could create a formula such as = (5*3600) + (47*60) +06, however that is very manual and I am looking at too many numbers. Is there something else I can do? Thanks Shiftaw |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=A1*24*60*60 (or =A1*86400) and format the result as General or Number, not
as Time. -- David Biddulph wrote in message ps.com... I am looking at invoices that have captured time spent on activity, the system reports duration in hr min sec ( 5:47:06). I need to convert this into a numbers that I can manipulate I could create a formula such as = (5*3600) + (47*60) +06, however that is very manual and I am looking at too many numbers. Is there something else I can do? Thanks Shiftaw |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
the way time is stored it is a fraction of a day
If you change your format to general it should dispay 0.241042 if not it is text and you will need to convert it to time one method to convert it to time is =time(value(left(A1,if(len(a1)=7,1,2))),value(mid( A1,if len(A1)=7,3,4),2)),value(right(A1,2))) will the fraction of a day do what you want? if you need it in seconds =A1*24*3600 " wrote: I am looking at invoices that have captured time spent on activity, the system reports duration in hr min sec ( 5:47:06). I need to convert this into a numbers that I can manipulate I could create a formula such as = (5*3600) + (47*60) +06, however that is very manual and I am looking at too many numbers. Is there something else I can do? Thanks Shiftaw |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On 17 Aug, 13:10, "David Biddulph" <groups [at] biddulph.org.uk
wrote: =A1*24*60*60 (or =A1*86400) and format the result as General or Number, not as Time. -- David Biddulph wrote in message ps.com... I am looking at invoices that have captured time spent on activity, the system reports duration in hr min sec ( 5:47:06). I need to convert this into a numbers that I can manipulate I could create a formula such as = (5*3600) + (47*60) +06, however that is very manual and I am looking at too many numbers. Is there something else I can do? Thanks Shiftaw- Hide quoted text - - Show quoted text - Might be worth mentioning the custom format of [hh]:mm etc - this would POTENTIALLY remove the need to change the time values |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Yes, just to use =A1 and format as [s] would give a number that would
display as 208626, but if (as the OP says), the purpose is to have a number to use in further manipulation, this didn't seem the ideal route. -- David Biddulph wrote in message ps.com... Might be worth mentioning the custom format of [hh]:mm etc - this would POTENTIALLY remove the need to change the time values On 17 Aug, 13:10, "David Biddulph" <groups [at] biddulph.org.uk wrote: =A1*24*60*60 (or =A1*86400) and format the result as General or Number, not as Time. -- David Biddulph wrote in message ps.com... I am looking at invoices that have captured time spent on activity, the system reports duration in hr min sec ( 5:47:06). I need to convert this into a numbers that I can manipulate I could create a formula such as = (5*3600) + (47*60) +06, however that is very manual and I am looking at too many numbers. Is there something else I can do? Thanks Shiftaw- Hide quoted text - - Show quoted text - |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Aug 17, 10:47 am, "David Biddulph" <groups [at] biddulph.org.uk
wrote: Yes, just to use =A1 and format as [s] would give a number that would display as 208626, but if (as the OP says), the purpose is to have a number to use in further manipulation, this didn't seem the ideal route. -- David Biddulph wrote in message ps.com... Might be worth mentioning the custom format of [hh]:mm etc - this would POTENTIALLY remove the need to change the time values On 17 Aug, 13:10, "David Biddulph" <groups [at] biddulph.org.uk wrote: =A1*24*60*60 (or =A1*86400) and format the result as General or Number, not as Time. -- David Biddulph wrote in message oups.com... I am looking at invoices that have captured time spent on activity, the system reports duration in hr min sec ( 5:47:06). I need to convert this into a numbers that I can manipulate I could create a formula such as = (5*3600) + (47*60) +06, however that is very manual and I am looking at too many numbers. Is there something else I can do? Thanks Shiftaw- Hide quoted text - - Show quoted text -- Hide quoted text - - Show quoted text - Thank you this was very helpful.... |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Converting numbers | Excel Discussion (Misc queries) | |||
Converting positive numbers to negative numbers | Excel Worksheet Functions | |||
Converting numbers formatted as text to numbers | Excel Discussion (Misc queries) | |||
Converting Numbers | Excel Discussion (Misc queries) | |||
converting to numbers | Excel Worksheet Functions |