+ Reply to Thread
Results 1 to 3 of 3

How to combine the selected items of a list and return in a cell

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    01-08-2013
    Location
    ankara
    MS-Off Ver
    Excel 2010
    Posts
    134

    How to combine the selected items of a list and return in a cell

    I have a global list in B column and I want to create a text about the list. If I put "1" in A column, I want my text to be on B11 for the selected items. So excel should do a loop for the selected range and combine the selected items in a new line and give me as an output.

    You may see the picture
    Untitled 1.jpg

  2. #2
    Forum Contributor lancer102rus's Avatar
    Join Date
    04-02-2014
    Location
    Ufa
    MS-Off Ver
    Excel 2010, 2013
    Posts
    252

    Re: How to combine the selected items of a list and return in a cell

    By UDF:
    combine.xlsm

  3. #3
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: How to combine the selected items of a list and return in a cell

    Maybe:

    Sub tane1()
    Dim x As String
    Dim i As Long
    x = "The missing points on the report are listed below:" & vbCrLf
    For i = 1 To Range("B" & Rows.count).End(3).Row
        If Range("A" & i) = 1 Then
        x = x & "- " & Range("B" & i) & vbCrLf
        End If
        x = x
    Next i
    Columns(2).ColumnWidth = 44.57
    Rows(Range("B" & Rows.count).End(3)(6).Row).RowHeight = 67.5
    Range("B" & Rows.count).End(3)(6) = x
    
    End Sub

+ 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. Return a value for items selected in a pivot filter
    By BaxBax in forum Excel Charting & Pivots
    Replies: 11
    Last Post: 11-29-2013, 09:12 AM
  2. Replies: 1
    Last Post: 08-01-2013, 07:55 PM
  3. Replies: 1
    Last Post: 09-03-2012, 10:03 PM
  4. [SOLVED] Apperance of selected items from drop down list in different cell
    By pointman787 in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 08-25-2012, 12:28 PM
  5. Replies: 1
    Last Post: 06-24-2005, 12:21 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