+ Reply to Thread
Results 1 to 15 of 15

Concatenate random text from a column

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    11-10-2011
    Location
    Bucharest, RO
    MS-Off Ver
    Excel 2021
    Posts
    141

    Concatenate random text from a column

    I have an excel column with about 100 rows, each row with an Excel formula that returns text under certain conditions. Note that, the text is different from one row to another. If conditions are not met, certain rows remain blank (so, without text).
    Now, I would like in another excel cell to identify lines (rows) that contain text and join them through a comma. How do I do that?

  2. #2
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,524

    Re: Concatenate random text from a column

    Attaching a sample workbook enables others to work on your problem:

    To attach a sample workbook. Make sure there is just enough data to make it clear what is needed. Include BEFORE/AFTER sheets if needed to show the process you're trying to complete or automate. Remember to desensitize the data.

    Click on GO ADVANCED and click "manage attachments" to open the upload window.


    To add a file to a post

  3. #3
    Forum Contributor
    Join Date
    11-10-2011
    Location
    Bucharest, RO
    MS-Off Ver
    Excel 2021
    Posts
    141

    Re: Concatenate random text from a column

    I've attached a sample file. The column I referenced in the first post is the column called "return".
    So, I want in the G2 cell to be a formula that concatenate, by comma, randomly generated text from the return column. Sorry for my english.
    Attached Files Attached Files

  4. #4
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,524

    Re: Concatenate random text from a column

    I like using Concatenate, then you can work in each individual box, could use some work.

    Formula: copy to clipboard
    =CONCATENATE(IF(C2>0,A2,""),IF(C2>0,",",""),IF(C2>0,B2,""),IF(D2>0,",",""),IF(D2>0,D2,""))

  5. #5
    Forum Contributor
    Join Date
    11-10-2011
    Location
    Bucharest, RO
    MS-Off Ver
    Excel 2021
    Posts
    141

    Re: Concatenate random text from a column

    @davesexcel, you did not understand me. I marked the yellow cell G2, not C2.
    So, in the G2 cell I would like the words generated in the "return" column to be displayed as follows: CAT II-Name 3 3, CAT V-Name 6 5, CAT IV-Name 10 5 ...
    If I use concatenate in the G2 cell, the problem is I don't know how to jump over empty cells in the "return" column, because I will have to consider each row, even if it contains text, even if it does not contain.

  6. #6
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,524

    Re: Concatenate random text from a column

    Well here is a code you can use:

    Sub Combine_It()
        Dim LstRw As Long, Rng As Range, C As Range, s As String
    
        LstRw = Cells(Rows.Count, "E").End(xlUp).Row
        Set Rng = Range("E2:E" & LstRw)
        For Each C In Rng.Cells
    
            If C <> " " Then
                s = s & C & ","
            End If
        Next C
    
        Range("G2") = Left(s, Len(s) - 1)
    End Sub

  7. #7
    Forum Expert José Augusto's Avatar
    Join Date
    10-29-2014
    Location
    Portugal
    MS-Off Ver
    2013-2016
    Posts
    3,329

    Re: Concatenate random text from a column

    Here a solution with a helper column

    In cell F2 use the following formula and copy down (hide this column)
    Formula: copy to clipboard
    =IF(TRIM($E2)<>"",IF(F1<>"",F1&", ","")&TRIM($E2),IF(F1="","",F1))

    In G2 use
    Formula: copy to clipboard
    =INDEX(F:F,COUNTA(F:F)-3,1)


    See the file
    Attached Files Attached Files

  8. #8
    Forum Contributor
    Join Date
    11-10-2011
    Location
    Bucharest, RO
    MS-Off Ver
    Excel 2021
    Posts
    141

    Re: Concatenate random text from a column

    Thank you very much. Now I have one step. In this sense, I made a small update to the file posted by @ José Augusto (ee the attachment below).
    In this file we transferred the final calculation to column H and in the G column we added the five categories: CAT I, CAT II, CAT III, CAT IV, CAT V.
    I would like the result in column H to be distributed by category. Yours can help me in this regard! I have tried a SUMPRODUCT separately but it does not work.

  9. #9
    Forum Contributor
    Join Date
    11-10-2011
    Location
    Bucharest, RO
    MS-Off Ver
    Excel 2021
    Posts
    141

    Re: Concatenate random text from a column

    No one, please!

  10. #10
    Forum Expert shukla.ankur281190's Avatar
    Join Date
    05-17-2014
    Location
    Lucknow, India
    MS-Off Ver
    Microsoft® Excel® for Microsoft 365 MSO (Version 2503 Build 16.0.18604.20000) 64-bit
    Posts
    3,992

    Re: Concatenate random text from a column

    Sort you data according your category to do so select A2:F101 then press Alt->A->S->S select short by category then ok.

    now in H2
    Formula: copy to clipboard
    =LOOKUP(2,1/($G2=$A$2:$A$101),$F$2:$F$101)


    Copy down.!
    If I helped, Don't forget to add reputation (click on the little star ★ at bottom of this post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)

  11. #11
    Forum Contributor
    Join Date
    11-10-2011
    Location
    Bucharest, RO
    MS-Off Ver
    Excel 2021
    Posts
    141

    Re: Concatenate random text from a column

    Thanks for the answer but unfortunately I can not use the sort date option every time.
    In addition, your formula works well only in the H2 cell, in H3 ... H6 does not work well.
    So, I would need a solution without using the manual sorting of the data.

  12. #12
    Forum Expert shukla.ankur281190's Avatar
    Join Date
    05-17-2014
    Location
    Lucknow, India
    MS-Off Ver
    Microsoft® Excel® for Microsoft 365 MSO (Version 2503 Build 16.0.18604.20000) 64-bit
    Posts
    3,992

    Re: Concatenate random text from a column

    Can you mention your expected result in sample file ?

  13. #13
    Forum Contributor
    Join Date
    11-10-2011
    Location
    Bucharest, RO
    MS-Off Ver
    Excel 2021
    Posts
    141

    Re: Concatenate random text from a column

    At this point in cell H2 is returned: CAT I-Name 16 5, CAT I-Name 57 3; what is correct because we have CAT I in the G2 cell.
    Further, in H3 cell should only show lines from column E starting with CAT II, because CAT II appears in G3 and so on... in H4 cell = CAT III, because G4 = CAT III... How can I make H3 ... H6 cells work?
    Last edited by public; 12-08-2017 at 06:22 AM.

  14. #14
    Forum Expert José Augusto's Avatar
    Join Date
    10-29-2014
    Location
    Portugal
    MS-Off Ver
    2013-2016
    Posts
    3,329

    Re: Concatenate random text from a column

    Hi
    Sorry for late replay
    I use a little better approach.
    In a new sheet (draft in my example) use in A3, B3, C3 the following formulas:
    =IFERROR(AGGREGATE(15,6,ROW(name!$E$2:$E$101)/(LEN(TRIM(name!$E$2:$E$101))<>0),ROW($B1)),"")
    =IF(A3<>"",TRIM(INDEX(name!E:E,A3,1)),"")
    =IF($A3<>"",IF(LEFT($B3,LEN(C$1))=C$1,IF(C2<>"",C2&", ","")&$B3,IF(C2="","",C2)),"")
    The first formula gives me the line numbers where there is text in the name column!E

    The second formula allows me to get that text

    The third formula uses the column header at C $ 1 to separate the text into columns. This formula can be copied to the other columns with headers.

    Note: In name!J2 I provide a array formula, for compatibility with prior version of Excel2010, that can replace my first formula.
    Formula: copy to clipboard
    =IFERROR(SMALL(ROW($E$2:$E$101)*(TRIM($E$2:$E$101)<>""),ROW(A101)-$J$1),"")

    See the file for clarification
    Last edited by José Augusto; 12-08-2017 at 07:18 PM.

  15. #15
    Forum Contributor
    Join Date
    11-10-2011
    Location
    Bucharest, RO
    MS-Off Ver
    Excel 2021
    Posts
    141

    Re: Concatenate random text from a column

    Thanks for the reply José Augusto but in your example there appears a countifs what excel 2003 does not support. In addition, I tried to implement your solution, that is to adapt it to my example and it is not working (maybe I did not understand something good, maybe!).

    For this reason, I decided to use a VBA code that searches for two values on two columns and return the corresponding result for the third column (see the example in the file attached below).

    I have tried to implement the VBA below in the attached excel file does not work on two search criteria !!! Please, some help.
    Function Multi_LookUpConcat(ByVal SearchList As String, SearchRange As Range, ReturnRange As Range, _
                          Optional SearchListDelimiter As String = ",", _
                          Optional Delimiter As String = " ", _
                          Optional MatchWhole As Boolean = True, _
                          Optional UniqueOnly As Boolean = False, _
                          Optional MatchCase As Boolean = False)
                      
      Dim X As Long, CellVal As String, ReturnVal As String, Result As String
      
    'Parse the SearchList into Strings
    ' Spaces next to the delimiters will be ignored
    Dim SearchString As String
    Dim List As String
    Dim C1 As Integer
    Dim C2 As Integer
    
      If StrComp(SearchList, "") = 0 Then
        Multi_LookUpConcat = ""
    
      ElseIf (SearchRange.Rows.Count > 1 And SearchRange.Columns.Count > 1) Or _
         (ReturnRange.Rows.Count > 1 And ReturnRange.Columns.Count > 1) Then
        Multi_LookUpConcat = CVErr(xlErrRef)
      
      Else
        
        SearchList = SearchList & SearchListDelimiter   'Ensure that it runs at least once
        C1 = 1
        C2 = InStr(C1, SearchList, SearchListDelimiter)
        
        While C2 > 0
            SearchString = Trim(Mid(SearchList, C1, C2 - C1))
    
            If Not MatchCase Then SearchString = UCase(SearchString)
            For X = 1 To SearchRange.Count
              If MatchCase Then
                CellVal = SearchRange(X).Value
              Else
                CellVal = UCase(SearchRange(X).Value)
              End If
              ReturnVal = ReturnRange(X).Value
              If MatchWhole And CellVal = SearchString Then
                If UniqueOnly And InStr(Result & Delimiter, Delimiter & ReturnVal & Delimiter) > 0 Then GoTo Continue
                Result = Result & Delimiter & ReturnVal
              ElseIf Not MatchWhole And CellVal Like "*" & SearchString & "*" Then
                If UniqueOnly And InStr(Result & Delimiter, Delimiter & ReturnVal & Delimiter) > 0 Then GoTo Continue
                Result = Result & Delimiter & ReturnVal
              End If
    Continue:
            Next
       
        ' Advance the pointers to search for the next element
        C1 = C2 + 1
        C2 = InStr(C1, SearchList, SearchListDelimiter)
        Wend
        
        Multi_LookUpConcat = Mid(Result, Len(Delimiter) + 1)
      
      End If
      
    End Function
    Attached Files Attached Files

+ 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. Excel Random Text in column from a set of options without duplicates
    By sanits591 in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 03-21-2017, 12:39 AM
  2. Generate Random Text, but to preserve the matching Column A & Column B
    By Andy8 in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 04-28-2016, 03:24 AM
  3. [SOLVED] Recover Date from Text to Column and Concatenate
    By paulmacro in forum Excel General
    Replies: 15
    Last Post: 01-12-2015, 04:40 PM
  4. [SOLVED] Code for random spaces for text to column in VBA
    By ndemetres in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-09-2014, 04:38 PM
  5. [SOLVED] Concatenate based on text in a different column
    By yasmin220 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 03-24-2014, 09:51 AM
  6. Select random text value from column and assign to variable
    By The Phil in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-29-2013, 02:09 PM
  7. [SOLVED] In a column of text data, how do I delete random cells that have .
    By Minivann in forum Excel General
    Replies: 2
    Last Post: 01-26-2005, 06:06 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