Extracting Unique Records in a column

Baskar

New Member
Joined
Jul 31, 2013
Messages
14
Dear Friends,
AB
12AP
12AP
13CH
1CH
2CH
15CH
2AP

<COLGROUP><COL style="WIDTH: 48pt" span=2 width=64><TBODY>
</TBODY>

I have a scenerio where to extract unique records in a column on condition base. I have managed to
find unique base using {=INDEX($K$2:$K$8,MATCH(0,COUNTIF($C$1:C1,$A$2:$A$8),0))}.

To Find Unique base on condition I have tried {=INDEX($K$2:$K$8,MATCH(0,COUNTIFs($C$1:C1,$A$2:$A$8,$B$2:$B$8,"CH"),0))} but didn't worked.


Kindly Guide me where I went wrong.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Try:

=INDEX(A$2:A$8,SMALL(IF(FREQUENCY(IF(B$2:B$8="CH",MATCH(A$2:A$8,A$2:A$8,0)),ROW(A$2:A$8)-ROW(A$2)+1),ROW(A$2:A$8)-ROW(A$2)+1),ROWS(C$2:C2)))

confirmed with Ctrl+Shift+Enter.
 
Upvote 0

Forum statistics

Threads
1,216,975
Messages
6,133,825
Members
449,835
Latest member
vietoonet

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