+ Reply to Thread
Results 1 to 20 of 20

Excel 2010-convert text to value

Hybrid View

  1. #1
    Registered User
    Join Date
    01-14-2014
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    12

    Smile Excel 2010-convert text to value

    When I download my bank statement in .csv format it displays all information in comma delimited format but in ONE column i.e


    20131108,BONUS INTEREST ,1.66,19517.52,

    I need info in excel format columns but when I use data-text to columns it display all info correctly in right colums except the values are displayed as text and not values

    I am using office 2010
    Any suggestions will be appreciated
    thanks
    ramsee

  2. #2
    Forum Expert Pepe Le Mokko's Avatar
    Join Date
    05-14-2009
    Location
    Belgium
    MS-Off Ver
    O365 v 2504
    Posts
    13,620

    Re: Excel 2010-convert text to value

    Hi
    probably your entire sheet is formatted as text.
    Ctrl+A and format as General before Text to columns

  3. #3
    Registered User
    Join Date
    01-14-2014
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Excel 2010-convert text to value

    Quote Originally Posted by Pepe Le Mokko View Post
    Hi
    probably your entire sheet is formatted as text.
    Ctrl+A and format as General before Text to columns
    Thanks for trying...i did what you suggested but still not converting to value...

  4. #4
    Registered User
    Join Date
    01-14-2014
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Excel 2010-convert text to value

    Thanks for trying. I did what you suggested but still not converting to value

  5. #5
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Excel 2010-convert text to value

    Not sure what number format is used in SA but try this formula

    Assuming the values in C1

    =--SUBSTITUTE(C1,".",",")
    Last edited by AlKey; 01-14-2014 at 01:49 PM.
    If you like my answer please click on * Add Reputation
    Don't forget to mark threads as "Solved" if your problem has been resolved

    "Nothing is so firmly believed as what we least know."
    --Michel de Montaigne

  6. #6
    Registered User
    Join Date
    01-14-2014
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Excel 2010-convert text to value

    Quote Originally Posted by AlKey View Post
    Not sure what number format is used in SA but try this formula

    Assuming the values in C1

    =--SUBSTITUTE(C1,".",",")
    Thanks but i was hoping for a simpler method.

  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
    53,048

    Re: Excel 2010-convert text to value

    Hi and welcome to the forum Waar omtrent in SA?

    If you want to do this with forumlas, try these, assuming your data starts in A1, down...
    B1=DATE(LEFT(A1,4),MID(A1,5,2),MID(A1,2,7))
    C1=TRIM(MID(A1,FIND(",",A1,1)+1,FIND("xx",SUBSTITUTE(A1,",","xx",2),1)-FIND(",",A1,1)-1))
    D1=MID(A1,FIND("xx",SUBSTITUTE(A1,",","xx",2),1)+1,FIND("xx",SUBSTITUTE(A1,",","xx",3),1)-FIND("xx",SUBSTITUTE(A1,",","xx",2),1)-1)*1
    E1=MID(A1,FIND("xx",SUBSTITUTE(A1,",","xx",3),1)+1,FIND("xx",SUBSTITUTE(A1,",","xx",4),1)-FIND("xx",SUBSTITUTE(A1,",","xx",3),1)-1)*1
    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

  8. #8
    Registered User
    Join Date
    01-14-2014
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Excel 2010-convert text to value

    Quote Originally Posted by FDibbins View Post
    Hi and welcome to the forum Waar omtrent in SA?

    If you want to do this with forumlas, try these, assuming your data starts in A1, down...
    B1=DATE(LEFT(A1,4),MID(A1,5,2),MID(A1,2,7))
    C1=TRIM(MID(A1,FIND(",",A1,1)+1,FIND("xx",SUBSTITUTE(A1,",","xx",2),1)-FIND(",",A1,1)-1))
    D1=MID(A1,FIND("xx",SUBSTITUTE(A1,",","xx",2),1)+1,FIND("xx",SUBSTITUTE(A1,",","xx",3),1)-FIND("xx",SUBSTITUTE(A1,",","xx",2),1)-1)*1
    E1=MID(A1,FIND("xx",SUBSTITUTE(A1,",","xx",3),1)+1,FIND("xx",SUBSTITUTE(A1,",","xx",4),1)-FIND("xx",SUBSTITUTE(A1,",","xx",3),1)-1)*1
    hi.. I am in Pretoria. I was hoping there is a simpler way to do it. Is it possible that my Excel 2010 is not working properly? Your assistance is appreciated..Jerry ramsee at xxxxxxxx.xx.xxx
    Last edited by FDibbins; 01-15-2014 at 03:15 AM. Reason: Email address removed

  9. #9
    Registered User
    Join Date
    01-14-2014
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Excel 2010-convert text to value

    Thanks but i was hoping for a simpler method.

  10. #10
    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
    53,048

    Re: Excel 2010-convert text to value

    When I used T2C, the 1, 3rd and 4th parts all converted to values/numbers. Is that not happening for you?

  11. #11
    Registered User
    Join Date
    01-14-2014
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Excel 2010-convert text to value

    Thanks again...It does not convert to value. Any chance i could sent you the .csv file. Perhaps easier to check

  12. #12
    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
    53,048

    Re: Excel 2010-convert text to value

    sure

    To attach a file to your post,
    click advanced (next to quick post),
    scroll down until you see "manage file",
    click that and select "add files" (top right corner).
    click "select files" find your file, click "open" click "upload" click 'done" bottom right. click "submit reply"

    Once the upload is completed the file name will appear below the input boxes in this window.
    You can then close the window to return to the new post screen.

  13. #13
    Registered User
    Join Date
    01-14-2014
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Excel 2010-convert text to value

    Thanks again..herewith file. hope you received it. firts time i am doing it..ramsee
    Attached Files Attached Files

  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
    53,048

    Re: Excel 2010-convert text to value

    Thanks. I just clicked on the file here and it opened in excel

    Apart from ACB part (2nd column), all the rest come in as values...
    A
    B
    C
    D
    E
    F
    G
    H
    I
    3
    20131001
    ACB DEBIT:EXTERNAL ( 14.50 ) ADT PTA PTSMI01495ADTA041825
    -400.14
    92757.12
    ;;;
    TRUE
    FALSE
    TRUE
    TRUE
    4
    20131001
    ACB DEBIT:EXTERNAL ( 14.50 ) SABCSAUKTV 111294245 OCT 13
    -28
    92729.12
    ;;;
    TRUE
    FALSE
    TRUE
    TRUE
    5
    20131001
    ACB DEBIT:EXTERNAL ( 14.50 ) OUTSURANCE OT16285706/41
    -471.15
    92257.97
    ;;;
    TRUE
    FALSE
    TRUE
    TRUE
    6
    20131003
    ACB DEBIT:EXTERNAL ( 14.50 ) VOXCONS R843355
    -45
    92212.97
    ;;;
    TRUE
    FALSE
    TRUE
    TRUE
    7
    20131004
    NOTIFIC FEE SMS NOTIFYME ( 3.00 ) 6 SMS KENNISGEWINGS
    0
    92212.97
    ;;;
    TRUE
    FALSE
    TRUE
    TRUE


    F:I I used =ISNUMBER(A3) copied down and across, to test.

    What do you get when pull the data in?

  15. #15
    Registered User
    Join Date
    01-14-2014
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Excel 2010-convert text to value

    I still get values....The amounts show as numerical values but try and add the two values and you will get -400.14 92757.12 #VALUE!

  16. #16
    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
    53,048

    Re: Excel 2010-convert text to value

    Quote Originally Posted by Ramsee View Post
    I still get values....The amounts show as numerical values but try and add the two values and you will get -400.14 92757.12 #VALUE!
    Nope, when I use =C3+D3 I get 92356.98

  17. #17
    Registered User
    Join Date
    01-14-2014
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Excel 2010-convert text to value

    Thank you very much for your time in trying to assist me. Much appreciated

  18. #18
    Registered User
    Join Date
    01-14-2014
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Excel 2010-convert text to value

    Then I guess my excel 2010 is corrupted?

  19. #19
    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
    53,048

    Re: Excel 2010-convert text to value

    Take a look at the attached and see how it compares to your file?
    Attached Files Attached Files

  20. #20
    Registered User
    Join Date
    01-14-2014
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Excel 2010-convert text to value

    your file is excellent...kindly detail exact steps you have taken to convert my file to yours. Maybe i am using wrong steps
    i took following steps
    format sheet to general
    then data text to column
    delimited,tab, comma next general, finish

+ 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. Find & Replace text in Word 2010 with Excel 2010 values.
    By pricep in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-14-2015, 06:36 AM
  2. Convert :00 into 0:00 time Excel 2010
    By Scapaflow in forum Excel General
    Replies: 4
    Last Post: 01-09-2014, 03:22 PM
  3. How to Convert Word 2010 doc to Excel 2010 that contains several tables (one macro)
    By theglitch in forum Word Programming / VBA / Macros
    Replies: 1
    Last Post: 01-24-2013, 01:36 PM
  4. Convert Text to Numeric Excel 2010 Pivot Table
    By zcheema in forum Excel General
    Replies: 1
    Last Post: 05-17-2012, 04:58 PM
  5. Replies: 0
    Last Post: 07-29-2011, 07:19 AM

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