Finding total Combinations of a Build Order

emad95

New Member
Joined
Oct 11, 2017
Messages
2
I need to produce the instances of a build sequence by product line.
Most products are assembled in the same order but outliers exist. I need to count the number of outliers.
Sample:

Products buildSequence
Product1 MaterialA
Product1 MaterialB
Product1 MaterialC
Product1 MaterialD
Product2 MaterialA
Product2 MaterialB
Product2 MaterialC
Product2 MaterialD
Product3 MaterialB
Product3 MaterialD
Product3 MaterialA

I would want to see that the data indicates that two buildSequences exist:
MaterialA
MaterialB
MaterialC
MaterialD

And

MaterialB
MaterialD
MaterialA

Is this possible without stepping into some VB?
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Welcome to the board.

You can copy the data to another column
Use Data -> Remove duplicates on the copied column
Use COUNTIF next to the unique column to count instances of the values e.g.
Code:
=COUNTIF($C$1:$C$500,D1)

Adjust range to suit
 
Upvote 0
Thanks JackDanIce,

I don't think that I follow the proposed solution (or I've misstated my question).
Wouldn't coping the material over to a new column and removing the duplicates also eliminate the ability to see the build sequence?
 
Upvote 0

Forum statistics

Threads
1,216,085
Messages
6,128,733
Members
449,465
Latest member
TAKLAM

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