Remove duplicates within formula and result in a list within one cell....

mimih23

Board Regular
Joined
Oct 14, 2010
Messages
89
Hello,
Hopefully you can help.
I have the following data on individual tabs within a workbook:
Sheet2
Data
4532
6562
4532
9981
1244

<TBODY>
</TBODY>

I desire a formula to pull all of the data within Column 1 and yield a list of the items without duplicates within one cell:
Sheet Name
Data
Sheet2
4532,6562,9981,1244
Sheet3
........

<TBODY>
</TBODY>

Is this possible?

Thanks!!
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Yes it's possible, with VBA. Add this UDF to a module in your workbook project:

Code:
Public Function StringUnique(ByVal rngVals As Range) As String
    Dim objDict As Object
    Dim lngRow As Long, lngCol As Long

    Set objDict = CreateObject("Scripting.Dictionary")

    With objDict
        For lngRow = 1 To rngVals.Rows.Count
            For lngCol = 1 To rngVals.Columns.Count
                If Not .Exists(rngVals(lngRow, lngCol).Value2) Then
                    Call .Add(Key:=rngVals(lngRow, lngCol).Value2, Item:=rngVals(lngRow, lngCol).Value2)
                End If
            Next lngCol
        Next lngRow
        StringUnique = Join$(.keys, ",")
    End With
End Function

And then use as a formula as follows:

=StringUnique(Sheet2!A1:A6)
 
Last edited:
Upvote 0
Thanks!
I must be missing something. When I enter the code in VBA and go to hit RUN, nothing shows. Should I see something listed in the Macro window? Also, will the formula automatically pull the sheet names...Sheet2, Sheet3, etc. Remember, the listing of Sheet names will be found on Sheet 1. The data that is to be populated on Sheet 1 will come from the individual sheets within one specific column. Thanks so much for your help.
 
Upvote 0
You need to call it as a formula; e.g:
=StringUnique(Sheet2!A2:A6)

And you might as well hard type the sheet name adjacent to the formula result since you have to point the formula to a specific sheet anyway.
 
Upvote 0

Forum statistics

Threads
1,215,756
Messages
6,126,692
Members
449,330
Latest member
ThatGuyCap

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