+ Reply to Thread
Results 1 to 25 of 25

Split Text Across Multiple Columns and Add Additional Text

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    02-12-2018
    Location
    TX
    MS-Off Ver
    MS Office 2019
    Posts
    305

    Re: Split Text Across Multiple Columns and Add Additional Text

    Okay. I managed to get a workbook updated. scroll down to row 100 and you'll find a short description that hopefully answers a lot of questions, as well as some code that might prove useful. Please let me know if anything further is needed. Thanks to everyone for their help. Also, attached workbook might be in 2007 and the original was in 2010. My computer situation at the moment needs improvement to say the least. Thanks again.
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    10-06-2008
    Location
    Canada
    MS-Off Ver
    2007 / 2013
    Posts
    5,692

    Re: Split Text Across Multiple Columns and Add Additional Text

    Column D split into Column G and on
    Sub AAAAA()
    Dim c As Range, a
        For Each c In Range("D2:D" & Cells(Rows.Count, 4).End(xlUp).Row)
            a = Split(Replace(c, ",", ""), " ")
                c.Offset(, 3).Resize(, UBound(a) + 1) = a
        Next c
    End Sub
    How would you determine if a value of for instance 550 would get SS or # as suffix?

+ 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. Split Column text in multiple columns !
    By ionelz in forum Excel General
    Replies: 1
    Last Post: 11-25-2017, 09:37 AM
  2. [SOLVED] Text from one cell split into multiple columns
    By spiritcat in forum Excel General
    Replies: 3
    Last Post: 08-26-2014, 02:03 PM
  3. [SOLVED] Split Wrapped Text (Multiple Lines) in A Cell to Multiple Columns
    By csmiin in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-28-2012, 09:15 PM
  4. Parse Text, Split to New Row, Multiple Columns
    By msbaker in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-30-2010, 02:01 PM
  5. How to input additional text to multiple of existing cells that has text
    By RagDyer in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 09-06-2005, 04:05 AM
  6. How to input additional text to multiple of existing cells that has text
    By tngo@hotmail.com in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 12:05 AM
  7. How to input additional text to multiple of existing cells that has text
    By tngo@hotmail.com in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-05-2005, 10:05 PM

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