Combine unique words in a single cell from a list of cells

Analystbycuriosity

New Member
Joined
Oct 8, 2017
Messages
18
I have a long list of following cells:

A11: XYZ A
A21: XYZ B
A31: XYZ C
A41: XYZ D

My desired Output:

A11: XYZ A B C D

Please help me in to find a function or formula.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Some of these rules are a bit fuzzy, which makes me suspect that there may be more rules like them, that we can't yet identify because the sample data you've provided was small.
What do you think ?

Gerald, Absolutely right.
Please tell me how to upload an image on this forum.
I will do it in the weekend.
 
Upvote 0
Copy all of the following code into a general module and then run the Portfolios macro (output goes to Column B starting at Row 1)...
[TABLE="width: 500"]
<tbody>[TR]
[TD]
Code:
Sub Portfolios()
  Dim X As Long, Z As Long, Ar As Range, Data As Range, Result As Variant
[/TD]
[/TR]
</tbody>[/TABLE]

Rick, Thanks a lot. Your code worked for me.
Only one deviation from my desired output.
If there is one instance

e.g. Axis Bank Ltd SunMF (only one cell of Axis Bank)

I get output as

Axis Bank Ltd SunMF SunMF

If more than one instances of any company, i get desired output.

 
Upvote 0
Rick, Thanks a lot. Your code worked for me.
Only one deviation from my desired output.
If there is one instance

e.g. Axis Bank Ltd SunMF (only one cell of Axis Bank)

I get output as

Axis Bank Ltd SunMF SunMF

If more than one instances of any company, i get desired output.

Do not touch the Portfolios macro (its code is fine) but replace the CommonStart function with the following code...
Code:
[table="width: 500"]
[tr]
	[td]Function CommonStart(ByVal V As Variant) As String
  Dim X As Long, L As Long, Letter As String
  If VarType(V) = vbString Then
    V = Split(V, ",")
  ElseIf TypeOf V Is Range Then
    If V.Rows.Count > 1 And V.Columns.Count > 1 Then
      Exit Function
    ElseIf V.Rows.Count > 1 Then
      V = Application.Transpose(V)
    ElseIf V.Columns.Count > 1 Then
      V = Application.Index(V.Value, 1, 0)
    Else
      Exit Function
    End If
  ElseIf Not IsArray(V) Then
    Exit Function
  End If
  If UBound(V) Then
    Do
      L = L + 1
      Letter = Mid(V(LBound(V)), L, 1)
      For X = LBound(V) To UBound(V)
        If Mid(V(X) & X, L, 1) <> Letter Then
          If Len(Letter) Then
            CommonStart = RTrim(Left(V(LBound(V)), InStrRev(Left(V(LBound(V)), L), " ")))
          Else
            CommonStart = V(LBound(V))
          End If
          Exit Function
        End If
      Next
    Loop While Len(Letter)
  Else
    CommonStart = Left(V(0), InStrRev(V(0), " ") - 1)
  End If
End Function[/td]
[/tr]
[/table]
 
Upvote 0

Forum statistics

Threads
1,223,246
Messages
6,170,988
Members
452,373
Latest member
TimReeks

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top