+ Reply to Thread
Results 1 to 18 of 18

Convert times stored as text to time serial numbers

  1. #1
    Registered User
    Join Date
    03-01-2013
    Location
    Australia
    MS-Off Ver
    Excel Mac 2011
    Posts
    25

    Convert times stored as text to time serial numbers

    Hey guys,

    I'm hoping someone can help convert times I have stored as text into time serial number format.

    The syntax the data is supplied is: 1 dy 12 hr 50 min 13 sec

    Unfortunately I can't use LEFT/MID/RIGHT formulas to pull the numbers out because the data is inconsistent in length. See a few different examples below:
    Please Login or Register  to view this content.
    I would like the output to be in time/date serial number format.

    Thanks for your help!

    Adam

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,936

    Re: Convert times stored as text to time serial numbers

    Unfortunately I can't use LEFT/MID/RIGHT formulas to pull the numbers out because the data is inconsistent in length.
    not so, that is (probably) exactly what you use, you just need to tell it where to "break"

    Let me take a look and see what I can do. In the mean time, can you give some sample answers please?

    Also, will the days always only be 1 digit?
    Last edited by FDibbins; 01-13-2016 at 01:14 AM.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,936

    Re: Convert times stored as text to time serial numbers

    OK, so I did not use left/mid too much, but it is still inthere

    A
    B
    1
    1 dy 12 hr 50 min 13 sec
    24.53487
    2
    2 min 43 sec
    0.113194
    3
    2 min 40 sec
    0.111111
    4
    6 hr 1 min 36 sec
    0.251111
    5
    43 sec
    0.000498
    6
    3 hr 48 min 17 sec
    0.15853
    7
    11 hr 30 min 8 sec
    0.479259
    8
    8 hr 14 sec
    0.343056
    9
    1 dy 7 hr 31 min 41 sec
    24.31367
    10
    6 hr 1 min 36 sec
    0.251111
    11
    3 hr 48 min 17 sec
    0.15853
    12
    11 hr 30 min 8 sec
    0.479259
    13
    [BGCOLOR=#F2F6F8]8 hr 14 sec[/BGCOLOR]
    0.343056

    B1=IF(LEN(A1)<7,TIME(0,0,LEFT(A1,3)),IF(ISERROR(SEARCH("dy",A1,1)),TIMEVALUE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,"hr",":"),"min",":"),"sec","")," ","")),LEFT(A1,2)*24+TIMEVALUE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(MID(A1,6,99),"hr",":"),"min",":"),"sec","")," ",""))))
    copied down

  4. #4
    Registered User
    Join Date
    03-01-2013
    Location
    Australia
    MS-Off Ver
    Excel Mac 2011
    Posts
    25

    Re: Convert times stored as text to time serial numbers

    Hey there,

    Thanks for looking into this for me! Much appreciated.

    This isn't quite working as I expect it should. See the results below for each:

    ORIGINAL AS TEXT OUTPUT
    1 dy 12 hr 50 min 13 sec 24 days 12 hours 50 minutes 13 seconds
    2 min 43 sec 00 days 02 hours 43 minutes 00 seconds
    2 min 40 sec 00 days 02 hours 40 minutes 00 seconds
    6 hr 1 min 36 sec 00 days 06 hours 01 minutes 36 seconds
    43 sec 00 days 00 hours 00 minutes 43 seconds
    3 hr 48 min 17 sec 00 days 03 hours 48 minutes 17 seconds
    11 hr 30 min 8 sec 00 days 11 hours 30 minutes 08 seconds
    8 hr 14 sec 00 days 08 hours 14 minutes 00 seconds
    1 dy 7 hr 31 min 41 sec 24 days 07 hours 31 minutes 41 seconds
    6 hr 1 min 36 sec 00 days 06 hours 01 minutes 36 seconds
    3 hr 48 min 17 sec 00 days 03 hours 48 minutes 17 seconds
    11 hr 30 min 8 sec 00 days 11 hours 30 minutes 08 seconds
    8 hr 14 sec 00 days 08 hours 14 minutes 00 seconds

    ISSUES:
    1. It's categorising 1 day as 24 days in the first entry
    2. It's putting some numbers into the wrong category (e.g. treating seconds as minutes when minutes didn't exist in the last entry)

    Could you please investigate?

    Adam

  5. #5
    Forum Expert
    Join Date
    05-01-2014
    Location
    California, US
    MS-Off Ver
    Excel 2010
    Posts
    1,795

    Re: Convert times stored as text to time serial numbers

    Quote Originally Posted by FDibbins View Post
    Please Login or Register  to view this content.
    Quote Originally Posted by AdamJaffrey View Post
    This isn't quite working as I expect it should.
    [....]
    1. It's categorising 1 day as 24 days in the first entry
    2. It's putting some numbers into the wrong category (e.g. treating seconds as minutes when minutes didn't exist in the last entry)
    Good catch! You stole my thunder. Other potential issues:

    3. I think the formula would interpret just "13 hr", "13 min" and "13 dy" as 13 seconds.
    4. The formula returns #VALUE for just "9 sec" or less.

    Simply remove "*24" to fix the first problem.

    I'll let FDibbins work on the other problems.
    Last edited by joeu2004; 01-13-2016 at 03:38 AM. Reason: Add to #3

  6. #6
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,936

    Re: Convert times stored as text to time serial numbers

    If you use Custom Formatting like this...
    dd "days" hh "Hours" mm "Minutes" ss "Seconds"

    Then you will still have a real day/time answer. Otherwise you will have a text answer that you will not be able to use in further calcs

  7. #7
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,936

    Re: Convert times stored as text to time serial numbers

    @ Joeu, good catch on the single-digit seconds, this fixes that (see bolded)...
    =IF(LEN(A1)<7,TIME(0,0,LEFT(A1,2)),IF(ISERROR(SEARCH("dy",A1,1)),TIMEVALUE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,"hr",":"),"min",":"),"sec","")," ","")),LEFT(A1,2)*24+TIMEVALUE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(MID(A1,6,99),"hr",":"),"min",":"),"sec","")," ",""))))

  8. #8
    Forum Expert
    Join Date
    05-01-2014
    Location
    California, US
    MS-Off Ver
    Excel 2010
    Posts
    1,795

    Re: Convert times stored as text to time serial numbers

    Quote Originally Posted by FDibbins View Post
    If you use Custom Formatting like this...
    dd "days" hh "Hours" mm "Minutes" ss "Seconds"
    Then you will still have a real day/time answer. Otherwise you will have a text answer that you will not be able to use in further calcs
    Adam was trying to demonstrate the many errors in your results.

    BTW, generally, we cannot use "dd" to format number of days. "dd" really formats day of the month. By coincidence, it seems to work for 31 days or less because Jan has 31 days. But "dd" formats 32 as 1 because 32 is interpreted as 1 Feb 1900.

    Quote Originally Posted by FDibbins View Post
    =IF(LEN(A1)<7,TIME(0,0,LEFT(A1,2)),
    IF(ISERROR(SEARCH("dy",A1,1)),TIMEVALUE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,"hr",":"),"min",":"),"sec","")," ","")),
    LEFT(A1,2)*24+TIMEVALUE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(MID(A1,6,99),"hr",":"),"min",":"),"sec","")," ",""))))
    The changes do not address the major issues that Adam and I pointed out. The following table demonstrates the behavior of your formula for all combinations of dy hr min sec. (Think of it as a 4-bit binary value.)
    Please Login or Register  to view this content.
    Aside.... I am unable to create tables, as you and Adam did. I think I might use features that this forum does not support. But I'm sure it used to work in the past.

    Column B contains your revised formula. Column C contains the formula shown. Alternatively, column C could contain formulas of the form =B1 formatted a d:hh:mm:ss. But as I noted above, the "d" incorrectly formats days as 17 because 48 is interpreted as 17 Feb 1900.

    The point is: your formula returns incorrect in most cases.

    As I noted previously, the number of days (48) can be corrected simply by omitting "*24" in your formula.

    But even with that correction, your formula returns correct results only in B1, B6, B7, B12, B14 and B15.
    Last edited by joeu2004; 01-13-2016 at 05:05 AM. Reason: cosmetic; simplify time format; B1 is correct

  9. #9
    Forum Expert
    Join Date
    05-01-2014
    Location
    California, US
    MS-Off Ver
    Excel 2010
    Posts
    1,795

    Re: Convert times stored as text to time serial numbers

    Quote Originally Posted by AdamJaffrey View Post
    I'm hoping someone can help convert times I have stored as text into time serial number format.
    The following seems to work for all combinations of dy hr min sec. I assume that hr is 0 to 23, and min and sec are 0 to 59 [1]. I make no assumptions about the number of days.

    [1] Actually, min and sec can be up to 99, as long as the converted time including hr is less than 24 hours.
    Please Login or Register  to view this content.
    The formula in B2 is as follows, copied into B3:B16 and formatted as Custom d:hh:mm:ss.
    Please Login or Register  to view this content.
    The formula in C2 is =INT(B2), copied into C3:C16.

    It displays the correct number of days. As I have noted previously, the "d" specifier in the format for column B is not reliable for formatting number of days. It works in these examples only by coincidence.

    PS.... If you do not require Excel 2003 compatibility, the formula can be simplified as follows.
    Please Login or Register  to view this content.
    Last edited by joeu2004; 01-13-2016 at 06:02 AM. Reason: correct C2; PS

  10. #10
    Registered User
    Join Date
    03-01-2013
    Location
    Australia
    MS-Off Ver
    Excel Mac 2011
    Posts
    25

    Re: Convert times stored as text to time serial numbers

    Quote Originally Posted by joeu2004 View Post
    The formula in B2 is as follows, copied into B3:B16 and formatted as Custom d:hh:mm:ss.
    Please Login or Register  to view this content.
    Thanks, this looks like it's returning correct results for all of the results required.

    A few questions:
    1. Can you confirm it works for single and double digit days, months, minutes and seconds?
    2. Can you also confirm it works when any/multiple of these attributes are missing completely?
    3. Finally, is there a way to correct the days issue you described? It doesn't matter to me if it returns serial numbers in Feb 1900. I just want to be able to perform calculations on the data, hence the serial numbers.

    Thanks for all your help, guys!

  11. #11
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,728

    Re: Convert times stored as text to time serial numbers

    Adam,

    it looks like joeu2004 is offline at the moment, but you can answer those questions yourself (well, 1 and 2 anyway) by trying it out with appropriate test data. For number 3, you can format the result as a date and time (e.g. dd/mm/yyyy hh:mm:ss, or whatever style you want), and it will give you a date that is in January 1900 (or a later month, depending on the number of days).

    Hope this helps.

    Pete

  12. #12
    Forum Expert
    Join Date
    02-19-2013
    Location
    India
    MS-Off Ver
    07/16
    Posts
    2,386

    Re: Convert times stored as text to time serial numbers

    posted wrong formula
    Last edited by hemesh; 01-13-2016 at 09:03 PM.
    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    WANT TO SAY THANKS, HIT ADD REPUTATION (*) AT THE BOTTOM LEFT CORNER OF THE POST

    More we learn about excel, more it shows us, how less we know about it.

    for chemistry
    https://www.youtube.com/c/chemistrybyshivaansh

  13. #13
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,936

    Re: Convert times stored as text to time serial numbers

    wow seriously embarrased, I normally test my formulas way better than that. I think this will give you what you want...
    A
    B
    1
    1 dy 12 hr 50 min 13 sec 1 days 12 Hrs 50 Mins 13 Secs
    2
    2 min 43 sec 0 days 0 Hrs 2 Mins 43 Secs
    3
    2 min 40 sec 0 days 0 Hrs 2 Mins 40 Secs
    4
    6 hr 1 min 36 sec 0 days 6 Hrs 1 Mins 36 Secs
    5
    43 sec 0 days 0 Hrs 0 Mins 43 Secs
    6
    3 hr 48 min 17 sec 0 days 3 Hrs 48 Mins 17 Secs
    7
    11 hr 30 min 8 sec 0 days 11 Hrs 30 Mins 8 Secs
    8
    8 hr 14 sec 0 days 8 Hrs 0 Mins 14 Secs
    9
    1 dy 7 hr 31 min 41 sec 1 days 7 Hrs 31 Mins 41 Secs
    10
    6 hr 1 min 36 sec 0 days 6 Hrs 1 Mins 36 Secs
    11
    3 hr 48 min 17 sec 0 days 3 Hrs 48 Mins 17 Secs
    12
    11 hr 30 min 8 sec 0 days 11 Hrs 30 Mins 8 Secs
    13
    8 hr 14 sec 0 days 8 Hrs 0 Mins 14 Secs
    14
    11 dy 12 hr 50 min 13 sec 11 days 12 Hrs 50 Mins 13 Secs

    B1=IF(ISNUMBER(SEARCH("dy",A1)),LEFT(A1,2),0)&" days "&IFERROR(MID($A1,SEARCH("hr",$A1,1)-IF(MID(A1,3,2)="hr",2,3),2),0)&" Hrs "&IFERROR(MID($A1,SEARCH("min",$A1,1)-IF(MID(A1,3,3)="Min",2,3),2),0)&" Mins "&IFERROR(MID($A1,SEARCH("sec",$A1,1)-3,2),0)&" Secs"

  14. #14
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,936

    Re: Convert times stored as text to time serial numbers

    If you want the actualy time/number, try this variation...
    A
    B
    C
    D
    1
    1 dy 12 hr 50 min 13 sec 1 days 12 Hrs 50 Mins 13 Secs
    01 days 12 Hours 50 Minutes 13 Seconds
    1.534872685
    2
    2 min 43 sec 0 days 0 Hrs 2 Mins 43 Secs
    00 days 00 Hours 02 Minutes 43 Seconds
    0.001886574
    3
    2 min 40 sec 0 days 0 Hrs 2 Mins 40 Secs
    00 days 00 Hours 02 Minutes 40 Seconds
    0.001851852
    4
    6 hr 1 min 36 sec 0 days 6 Hrs 1 Mins 36 Secs
    00 days 06 Hours 01 Minutes 36 Seconds
    0.251111111
    5
    43 sec 0 days 0 Hrs 0 Mins 43 Secs
    00 days 00 Hours 00 Minutes 43 Seconds
    0.000497685
    6
    3 hr 48 min 17 sec 0 days 3 Hrs 48 Mins 17 Secs
    00 days 03 Hours 48 Minutes 17 Seconds
    0.158530093
    7
    11 hr 30 min 8 sec 0 days 11 Hrs 30 Mins 8 Secs
    00 days 11 Hours 30 Minutes 08 Seconds
    0.479259259
    8
    8 hr 14 sec 0 days 8 Hrs 0 Mins 14 Secs
    00 days 08 Hours 00 Minutes 14 Seconds
    0.33349537
    9
    1 dy 7 hr 31 min 41 sec 1 days 7 Hrs 31 Mins 41 Secs
    01 days 07 Hours 31 Minutes 41 Seconds
    1.313668981
    10
    6 hr 1 min 36 sec 0 days 6 Hrs 1 Mins 36 Secs
    00 days 06 Hours 01 Minutes 36 Seconds
    0.251111111
    11
    3 hr 48 min 17 sec 0 days 3 Hrs 48 Mins 17 Secs
    00 days 03 Hours 48 Minutes 17 Seconds
    0.158530093
    12
    11 hr 30 min 8 sec 0 days 11 Hrs 30 Mins 8 Secs
    00 days 11 Hours 30 Minutes 08 Seconds
    0.479259259
    13
    8 hr 14 sec 0 days 8 Hrs 0 Mins 14 Secs
    00 days 08 Hours 00 Minutes 14 Seconds
    0.33349537
    14
    11 dy 12 hr 50 min 13 sec 11 days 12 Hrs 50 Mins 13 Secs
    11 days 12 Hours 50 Minutes 13 Seconds
    11.53487269

    B1=IF(ISNUMBER(SEARCH("dy",A1)),LEFT(A1,2),0)&" days "&IFERROR(MID($A1,SEARCH("hr",$A1,1)-IF(MID(A1,3,2)="hr",2,3),2),0)&" Hrs "&IFERROR(MID($A1,SEARCH("min",$A1,1)-IF(MID(A1,3,3)="Min",2,3),2),0)&" Mins "&IFERROR(MID($A1,SEARCH("sec",$A1,1)-3,2),0)&" Secs"
    (same as before)
    C1=IF(ISNUMBER(SEARCH("dy",A1)),LEFT(A1,2),0)+TIMEVALUE(IFERROR(MID($A1,SEARCH("hr",$A1,1)-IF(MID(A1,3,2)="hr",2,3),2),0)&":"&IFERROR(MID($A1,SEARCH("min",$A1,1)-IF(MID(A1,3,3)="Min",2,3),2),0)&":"&IFERROR(MID($A1,SEARCH("sec",$A1,1)-3,2),0))
    this is an actual value, formatted as dd "days" hh "Hours" mm "Minutes" ss "Seconds"
    D1 is the same formula, just formatted as general

  15. #15
    Forum Expert
    Join Date
    05-01-2014
    Location
    California, US
    MS-Off Ver
    Excel 2010
    Posts
    1,795

    Re: Convert times stored as text to time serial numbers

    Quote Originally Posted by AdamJaffrey View Post
    Can you confirm it works for single and double digit days, months, minutes and seconds?
    Yes, within the limits that I specified (e.g. hr is 0 to 23). I tested single and double digits in all 15 combinations.

    (You could easily do the same. )

    Quote Originally Posted by AdamJaffrey View Post
    Can you also confirm it works when any/multiple of these attributes are missing completely?
    Yes, if I understand the question. The table that I provided demonstrates all combinations of missing and present dy, hr, min and sec attributes.

    However, that was just my guess. You never explained or demonstrated all the possible forms of input. If there is a form that I have not covered, it would behoove you to test it and/or tell us what you have not mentioned yet.

    Quote Originally Posted by AdamJaffrey View Post
    Finally, is there a way to correct the days issue you described? It doesn't matter to me if it returns serial numbers in Feb 1900. I just want to be able to perform calculations on the data, hence the serial numbers.
    As I stated repeatedly in this thread, we cannot use the "d" specifier to display number of days greater than 31.

    But that does not obviate the possibility of including larger number of days in the serial number itself. It is just a number.

    If that is all that you require -- not displaying the elapsed days -- you should have no problem with the formulas that I presented.

    (And if you are certain that the number of days will never exceed 31, you are free to use the "d" specifier.)

    -----

    Perhaps it will help to have a general review of how Excel stores elapsed days/time and date/time.

    In general, elapsed days/time and date/time are stored as a number of days and fractional days. That is, the integer part is a number of days; the fractional part is the (remaining) time.

    We can interpret the integer part as the number of elapsed days in a time calculation, or as the number of days since 31 Dec 1899 in a date.

    The two are indistinguishable internally. The difference is simply a matter of interpretation of the numeric representation.

    (Excel displays 31 Dec 1899 as 0 Jan 1900. We cannot enter either of those dates manually.)

    However, the "d" specifier always uses the second interpretation (number of days since 31 Dec 1899).

    And I don't know of any format specifier that uses the first interpretation (number of elapsed days).

    AFAIK, the only reliable way [1] to display number of elapsed days and time is a text formula like the one that I demonstrated in message #8, to wit:

    =INT(B2) & TEXT(B2," hh:mm:ss")

    But Excel does not recognize that as a text representation of elapsed days/time. So we cannot reference that cell in another cell that performs arithmetic calculations.

    So if you also want to display the elapsed days/time reliably, you might put the serial number calculation in one cell and the "formatted" display (text formula) of the serial number in a parallel cell.


    -----
    [1] Technically, =INT(B2)&TEXT(B2," hh:mm:ss") is not entirely reliable because Excel rounds fractional seconds. But I think it should be sufficient for your purposes because the serial numbers are calculated from the input form, and they are accurate to the second. "Famous last words".
    Last edited by joeu2004; 01-13-2016 at 11:30 PM. Reason: cosmetic

  16. #16
    Forum Expert
    Join Date
    02-19-2013
    Location
    India
    MS-Off Ver
    07/16
    Posts
    2,386

    Re: Convert times stored as text to time serial numbers

    Another approach may be copy paste below in B1 and then hit enter

    below formula gives actual time serials

    =IF(ISNUMBER(SEARCH("dy",A1)),LEFT(A1,2),0)+SUMPRODUCT(IFERROR(--(TRIM(MID(SUBSTITUTE(" "&A1," ",REPT(" ",10)),(SEARCH({"hr","min","sec"},SUBSTITUTE(" "&A1," ",REPT(" ",10))))-18,9))),0)/{24,1440,86400})

    works for 2 digit of day and 5 digits of hour, min, sec each

    in case you want to apply formatting then use [h]:mm:ss that shows you exceeding hours in format of more than 24 hours
    lets say instead of 24 hours you had 25 hours then it shows 25 and so on and hours of the days will be added to the hour section
    Last edited by hemesh; 01-14-2016 at 10:42 AM.

  17. #17
    Registered User
    Join Date
    03-01-2013
    Location
    Australia
    MS-Off Ver
    Excel Mac 2011
    Posts
    25

    Re: Convert times stored as text to time serial numbers

    Thanks everyone for your valued contributions!

    Looks like we've got quite a few solutions which all work, with different formatting options depending on the output needed.

    Love you all! <3

  18. #18
    Forum Expert
    Join Date
    02-19-2013
    Location
    India
    MS-Off Ver
    07/16
    Posts
    2,386

    Re: Convert times stored as text to time serial numbers

    @ Adam, you are welcome.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Marco to convert numbers stored as text to numbers and dates stored as text to numbers
    By a2424 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 05-22-2014, 10:19 AM
  2. [SOLVED] Convert numbers stored as text to numbers for range of data that changes
    By excel2425 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 01-06-2014, 01:57 PM
  3. [SOLVED] Convert all numbers stored as text or custom formatted to numbers &no decimals - 40 sheets
    By synses in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-19-2013, 01:46 AM
  4. [SOLVED] How do you apply the int() in VBA in order to convert numbers stored as text to numbers
    By djaurit in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-21-2012, 02:57 PM
  5. Replies: 2
    Last Post: 10-22-2009, 02:50 PM
  6. Convert numbers stored as text to numbers Excel 2000
    By Darlene in forum Excel General
    Replies: 6
    Last Post: 01-31-2006, 04:10 PM
  7. [SOLVED] How do I convert numbers stored as text with spaces to numbers
    By Baffuor in forum Excel General
    Replies: 1
    Last Post: 05-24-2005, 06:31 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1