+ Reply to Thread
Results 1 to 14 of 14

how is separating the word to character ?

Hybrid View

  1. #1
    Registered User
    Join Date
    09-11-2016
    Location
    NEWDELHI, INDIA
    MS-Off Ver
    2016
    Posts
    7

    how is separating the word to character ?

    hello everyone

    i want function to separating the word to distributed characters in one cell like the attached file.
    Attached Files Attached Files

  2. #2
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: how is separating the word to character ?

    Function AddSpace(Str As String) As String
        Dim i As Long
        For i = 1 To Len(Str)
            AddSpace = AddSpace & Mid(Str, i, 1) & " "
        Next i
        AddSpace = Trim(AddSpace)
    End Function
    How to install your new code
    Copy the Excel VBA code
    Select the workbook in which you want to store the Excel VBA code
    Press Alt+F11 to open the Visual Basic Editor
    Choose Insert > Module
    Edit > Paste the macro into the module that appeared
    Close the VBEditor
    Save your workbook (Excel 2007+ select a macro-enabled file format, like *.xlsm)


    Then use:

    =AddSpace(A3)
    Attached Files Attached Files
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU

  3. #3
    Registered User
    Join Date
    09-11-2016
    Location
    NEWDELHI, INDIA
    MS-Off Ver
    2016
    Posts
    7

    Re: how is separating the word to character ?

    Dear Sir:
    You have my sincere thanks.
    I appreciate your work and help me.
    It's done.

  4. #4
    Registered User
    Join Date
    09-11-2016
    Location
    NEWDELHI, INDIA
    MS-Off Ver
    2016
    Posts
    7

    Re: how is separating the word to character ?

    Quote Originally Posted by Glenn Kennedy View Post
    Function AddSpace(Str As String) As String
        Dim i As Long
        For i = 1 To Len(Str)
            AddSpace = AddSpace & Mid(Str, i, 1) & " "
        Next i
        AddSpace = Trim(AddSpace)
    End Function
    How to install your new code
    Copy the Excel VBA code
    Select the workbook in which you want to store the Excel VBA code
    Press Alt+F11 to open the Visual Basic Editor
    Choose Insert > Module
    Edit > Paste the macro into the module that appeared
    Close the VBEditor
    Save your workbook (Excel 2007+ select a macro-enabled file format, like *.xlsm)


    Then use:

    =AddSpace(A3)
    Dear Sir
    You gave me the best solution to the subject.
    I appreciate your work.
    Thank you very much.

  5. #5
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: how is separating the word to character ?

    Because you've Ex2016 you can try with PowerQuery (Get&Transform)
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    09-11-2016
    Location
    NEWDELHI, INDIA
    MS-Off Ver
    2016
    Posts
    7

    Re: how is separating the word to character ?

    Quote Originally Posted by sandy666 View Post
    Because you've Ex2016 you can try with PowerQuery (Get&Transform)
    thnx
    i have excel 2013

  7. #7
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: how is separating the word to character ?

    Quote Originally Posted by exce-llover View Post
    thnx
    i have excel 2013
    So update your profile
    For Ex2013 you can get free add-in from MS
    Last edited by sandy666; 10-06-2017 at 10:58 AM.

  8. #8
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2024
    Posts
    6,175

    Re: how is separating the word to character ?

    Or:
    Function Add_Space(Str As String) As String
        Add_Space = Join(Split(StrConv(Str, vbUnicode), Chr(0)), " ")
    End Function

  9. #9
    Registered User
    Join Date
    09-11-2016
    Location
    NEWDELHI, INDIA
    MS-Off Ver
    2016
    Posts
    7

    Re: how is separating the word to character ?

    Quote Originally Posted by Phuocam View Post
    Or:
    Function Add_Space(Str As String) As String
        Add_Space = Join(Split(StrConv(Str, vbUnicode), Chr(0)), " ")
    End Function
    In some languages that rely on right-to-left typing, it does not work.
    Just succeeded in words in English and languages that start from left to right.

  10. #10
    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: how is separating the word to character ?

    This can also be done if you have TEXTJOIN function
    Enter in B3 and copy down
    Formula: copy to clipboard
    =TRIM(TEXTJOIN(" ",1,INDEX(MID(A3,COLUMN(A:XX),1),0)))

    v A B
    1
    2
    3 TREE T R E E
    4 EXCEL FORUM E X C E L F O R U M
    5 SEPARATE WORDS BY INSERTING SPACES S E P A R A T E W O R D S B Y I N S E R T I N G S P A C E S
    6
    7
    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

  11. #11
    Registered User
    Join Date
    09-11-2016
    Location
    NEWDELHI, INDIA
    MS-Off Ver
    2016
    Posts
    7

    Re: how is separating the word to character ?

    Quote Originally Posted by AlKey View Post
    This can also be done if you have TEXTJOIN function
    Enter in B3 and copy down
    Formula: copy to clipboard
    =TRIM(TEXTJOIN(" ",1,INDEX(MID(A3,COLUMN(A:XX),1),0)))

    v A B
    1
    2
    3 TREE T R E E
    4 EXCEL FORUM E X C E L F O R U M
    5 SEPARATE WORDS BY INSERTING SPACES S E P A R A T E W O R D S B Y I N S E R T I N G S P A C E S
    6
    7
    Dear Sir:
    I appreciate your work and help me but it did not work.
    * I have Excel 2013
    I changed your function to this
    =TRIM(TEXTJOIN(" ";1;INDEX(MID(A3;COLUMN(A:XX);1);0)))
    what's mean XX (A:XX)

  12. #12
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: how is separating the word to character ?

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

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

    Re: how is separating the word to character ?

    Your post does not comply with Rule 8 of our Forum RULES. Do not crosspost your question on multiple forums without including links here to the other threads on other forums.

    Cross-posting is when you post the same question in other forums on the web. The last thing you want to do is waste people's time working on an issue you have already resolved elsewhere. We prefer that you not cross-post at all, but if you do (and it's unlikely to go unnoticed), you MUST provide a link (copy the url from the address bar in your browser) to the cross-post.

    Expect cross-posted questions without a link to be closed and a message will be posted by the moderator explaining why. We are here to help so help us to help you!

    Read this to understand why we ask you to do this, and then please edit your first post to include links to any and all cross-posts in any other forums (not just this site).

  14. #14
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: how is separating the word to character ?

    Thank you for providing detailed feedback. Very helpful.

    And, of course...
    You're welcome.



    If that takes care of your original question, please select "Thread Tools" from the menu link above and mark this thread as SOLVED.

    It'd also be appreciated if you were to click the Add Reputation button at the foot of any of the posts of all members who helped you reach a solution.

+ 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. Add a character before each word in a cell
    By jas225 in forum Excel General
    Replies: 9
    Last Post: 08-07-2018, 01:35 AM
  2. [SOLVED] Removing character(s) from end of last word
    By VegasL in forum Excel General
    Replies: 5
    Last Post: 04-20-2017, 12:23 AM
  3. [SOLVED] extract a word if it contains a particular character
    By emymeeky in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 12-28-2013, 04:50 PM
  4. Remove text after or before character or word?
    By mikey42979 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 06-19-2013, 08:47 AM
  5. Remove last word/character from a string
    By Delkath in forum Excel General
    Replies: 3
    Last Post: 09-08-2010, 01:48 PM
  6. Parsing out a word after a character (#)
    By BZabrocki in forum Excel General
    Replies: 1
    Last Post: 06-06-2007, 02:52 PM
  7. [SOLVED] Insert a special character before and after a word
    By Venkatesh V in forum Excel General
    Replies: 1
    Last Post: 02-21-2005, 11:06 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