+ Reply to Thread
Results 1 to 3 of 3

Format text in cell to view with spaces?

Hybrid View

nkoichev Format text in cell to view... 09-21-2006, 08:44 AM
starguy you can use function to do... 09-21-2006, 10:04 AM
jetted Here is a different flavor ... 09-21-2006, 12:47 PM
  1. #1
    Registered User
    Join Date
    01-28-2006
    Posts
    5

    Format text in cell to view with spaces?

    Can I format a cell with text inside to show the text with spaces between some characters?

    EXM: The text in A1 is "ABCDEFG". I want to see it "AB CD EF G" or "ABC DEF G".

  2. #2
    Forum Contributor
    Join Date
    03-14-2006
    Location
    Pakistan
    Posts
    1,791

    Lightbulb

    Quote Originally Posted by nkoichev
    Can I format a cell with text inside to show the text with spaces between some characters?

    EXM: The text in A1 is "ABCDEFG". I want to see it "AB CD EF G" or "ABC DEF G".
    you can use function to do this
    if your data is in A1 put in B1

    =MID(A1,1,2)&" "&MID(A1,3,2)&" "&MID(A1,5,2)&" "&MID(A1,7,2)

    Regards.

  3. #3
    Valued Forum Contributor
    Join Date
    12-16-2004
    Location
    Canada, Quebec
    Posts
    363
    Here is a different flavor

    Sub separate()
    rowcount = Cells(Cells.Rows.Count, "a").End(xlUp).Row
    For i = 1 To rowcount
    Range("a" & i).Select
    valu = ActiveCell.Value
    len_valu = Len(valu)
    For counter = 1 To len_valu
    '2 letters if you want 3 letters change 2 to 3 if the following line
    car = Mid(valu, counter, 2)
    total = total + " " + car
    counter = counter + 1
    Next
    'MsgBox total
    total = " "
    len_valu = " "
    Next

    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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