Calculate number of combinations in a data set

awiegmann1

New Member
Joined
May 20, 2013
Messages
3
I have 200,000 rows of data (ID#'s), columns G-Q have an offer code from a set of 300 possible offers. Each of the twelve offers in cells G-Q are different for each ID#. The offer numbers are not in numerical order. What formula would I use to calculate the number of offer combinations in the 200,000 rows of data?
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
I'm not understanding what your asking, can you please post a small sample of data, and desired result?
 
Upvote 0
Are you looking to count unique values in a range?
 
Upvote 0
If the 11 offers are selected at random from the 300 possibilities, there is a vanishingly small chance that there are any duplicates at all.

You could write a macro that sorts each row, then do an 11-way sort on cols G:Q, then look for duplicates in adjacent rows.
 
Upvote 0
If the 11 offers are selected at random from the 300 possibilities, there is a vanishingly small chance that there are any duplicates at all.

You could write a macro that sorts each row, then do an 11-way sort on cols G:Q, then look for duplicates in adjacent rows.

The offers are selected by relevancy to that ID# but it could be that none are duplicated. I've tried a macro to sort across the rows but it is taking too long to run. I was hoping for a formula that may be quicker.

My end goal is to know how many offer sets (combination of twelve for each ID#), if any, are duplicated in the data set.

Any help is appreciated. The answer would be really helpful to have by tomorrow.
 
Upvote 0
What macro did you try?

Sub horizontalsort()
For x = 2 To 200009
myrange = "F" & x & ":" & "Q200009"
Worksheets("Sheet1").Range(myrange).sort _
Key1:=Worksheets("Sheet1").Rows(x), _
Orientation:=xlSortRows
Next x
End Sub
 
Upvote 0
You want to sort one row at a time:

Code:
Sub HorizontalSort()
    Dim rRow        As Range
    For Each rRow In Worksheets("Sheet1").Range("F2:Q9").Rows
        rRow.Sort Key1:=rRow.Cells(1), _
                  Orientation:=xlSortRows, _
                  Header:=xlNo
    Next rRow
End Sub
 
Upvote 0
Oops:

Code:
For Each rRow In Worksheets("Sheet1").Range("F2:[COLOR=#FF0000]Q200009[/COLOR]").Rows
 
Upvote 0

Forum statistics

Threads
1,215,700
Messages
6,126,302
Members
449,308
Latest member
VerifiedBleachersAttendee

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