• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Followup to Counting unique values across an array

e119687

New Member
I received an excellent solution to my first post related to counting unique values. I am however faced with another challenge in that I need to display a list of the unique SN's and then which problems are associated with each.

I have attached sample data and a sample output of what I am trying to create.

Any help would be greatly appreciated.
 

Attachments

Or...............

Try this formula solution

1] In "SN" A32, enter formula :

=IFERROR(AGGREGATE(15,6,0+SUBSTITUTE($B$2:$CQ$25,"_","")/(0+SUBSTITUTE($B$2:$CQ$25,"_","")>A31),1),"")

And,

Select A32 >> Custom cell format, enter: 0000\_000

All copied down

2] In "Problem number" B32, copied across and down :

=IFERROR(INDEX($A$2:$A$25,AGGREGATE(15,6,ROW($A$2:$A$25)-ROW($A$1)/(0+SUBSTITUTE($B$2:$CQ$25,"_","")=$A32),COLUMN(A1))),"")

Regards
Bosco
 

Attachments

Back
Top