Need help with extracting one value from same multiple values

thlee1122

New Member
Joined
Aug 6, 2015
Messages
8
Hi all,

I need help with extracting one value from same multiple values.

Below is the part of the dataset I have.

Here is the example of what I want.

For example,

There are 3 DLGY1702W.ABWEEUS Model Name. I only want to output one for this model. Same goes for other model names as well.

How do you do this with a formula?

Your help will be greatly appreciated.


1Model
2
DLGY1702W.ABWEEUS

<tbody>
</tbody>
3
DLGY1702W.ABWEEUS

<tbody>
</tbody>
4
DLGY1702W.ABWEEUS

<tbody>
</tbody>
5
WT1801HVA.ASSEEUS

<tbody>
</tbody>
6
WT1801HVA.ASSEEUS

<tbody>
</tbody>
7
DLEY1701V.ASSEEUS

<tbody>
</tbody>
8
DLEY1701V.ASSEEUS

<tbody>
</tbody>
9
DLEY1701VE.ASSEEUS

<tbody>
</tbody>
10
DLEY1701VE.ASSEEUS

<tbody>
</tbody>

<tbody>
</tbody>
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Hi there,

There a couple of ways to do this - a macro or via the Advanced option in the Sort & Filter tab (Excel 2007 and later) but as you want a formula you can use the following array formula* where the model numbers in A2:A10 and the output starts at cell C2 (change these ranges to suit if necessary):

{=INDEX($A$2:$A$10,MATCH(0,COUNTIF($C$1:C1,$A$2:$A$10),0))}

Regards,

Robert

* Array formulas must be confirmed with CTRL+SHIFT+ENTER after typing or modifying them. When done correctly, Excel will automatically add braces, {}, around the formula. Do not simply type the braces yourself.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,691
Members
448,978
Latest member
rrauni

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