ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   can we convert "2 days 16 hrs" to " 64hrs" using excel functions (https://www.excelbanter.com/excel-worksheet-functions/84641-can-we-convert-2-days-16-hrs-64hrs-using-excel-functions.html)

chris

can we convert "2 days 16 hrs" to " 64hrs" using excel functions
 
i tried diffeernt methods. i can either convert days to hrs or hrs to days.
but am not able to do both. so if anybody can do it. plz let me know.

thanks
chris

Bob Phillips

can we convert "2 days 16 hrs" to " 64hrs" using excel functions
 
If the data is how you stated, this will work

=LEFT(A1,FIND(" ",A1)-1)*24+MID(SUBSTITUTE(A1," hrs",""),FIND(" ",A1,FIND("
",A1)+1)+1,99)&"hrs"

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"chris" wrote in message
...
i tried diffeernt methods. i can either convert days to hrs or hrs to

days.
but am not able to do both. so if anybody can do it. plz let me know.

thanks
chris




Bob Phillips

can we convert "2 days 16 hrs" to " 64hrs" using excel functions
 
slightly better

=LEFT(A1,FIND(" ",A1)-1)*24+MID(TRIM(SUBSTITUTE(A1,"hrs","")),FIND("
",A1,FIND(" ",A1)+1)+1,99)&"hrs"

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"chris" wrote in message
...
i tried diffeernt methods. i can either convert days to hrs or hrs to

days.
but am not able to do both. so if anybody can do it. plz let me know.

thanks
chris




Biff

can we convert "2 days 16 hrs" to " 64hrs" using excel functions
 
Hi!

Maybe something like this:

=IF(ISNUMBER(SEARCH(" day",A1)),24*LEFT(A1,FIND("
",A1)-1),0)+IF(ISNUMBER(SEARCH(" hr",A1)),TRIM(RIGHT(SUBSTITUTE(A1,"
hrs",""),2)),0)

It'll work on the following formats:

2 days
99 hrs
0 days 0 hrs
2 days 99 hrs
(any number of days) days ( up to any 2 digits) hrs

Biff

"chris" wrote in message
...
i tried diffeernt methods. i can either convert days to hrs or hrs to days.
but am not able to do both. so if anybody can do it. plz let me know.

thanks
chris




Dave Peterson

can we convert "2 days 16 hrs" to " 64hrs" using excel functions
 
I'm not sure if this is a possibility for you, but if you used two cells -- one
for hours and one for days, then your life may get easier.



chris wrote:

i tried diffeernt methods. i can either convert days to hrs or hrs to days.
but am not able to do both. so if anybody can do it. plz let me know.

thanks
chris


--

Dave Peterson

Fred Smith

can we convert "2 days 16 hrs" to " 64hrs" using excel functions
 
If you have an actual Excel time in your cell, the format [h] will display the
64 hours for you. The brackets tell excel to display more than 24 hours.

--
Regards,
Fred


"chris" wrote in message
...
i tried diffeernt methods. i can either convert days to hrs or hrs to days.
but am not able to do both. so if anybody can do it. plz let me know.

thanks
chris





All times are GMT +1. The time now is 11:42 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com