Get First Data and Ignore for same PO

reza_doang

Board Regular
Joined
May 31, 2010
Messages
187
Hi All -


Need your expertise in excel :)
Currently i have data with thousands of rows and there is duplication in some of data, but i can't delete it.
i have column PO Number and duration of the PO (from PO created - PO release) and not in consecutive.
In that column,I just want to take the information each PO only 1 (irrespective with PO duplication)
i.e
I have 10.000 PO numbers (rows) but might be only 5.000 PO the unique one.
by manually i can use pivot or table and remove duplicate, but it will take more effort.


Really appreciate if you can give formula to get only first PO data and ignore the rest for same PO.

[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]PO[/TD]
[TD]Days[/TD]
[TD]expected result[/TD]
[/TR]
[TR]
[TD]2000100[/TD]
[TD]5[/TD]
[TD]5[/TD]
[/TR]
[TR]
[TD]2000200[/TD]
[TD]4[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]2000100[/TD]
[TD]5[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]2000300[/TD]
[TD]1[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]2000200[/TD]
[TD]4[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]2000500[/TD]
[TD]2[/TD]
[TD]2[/TD]
[/TR]
</tbody>[/TABLE]














Hope you understand with my requirement.

Thanks in advance
Reza
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
How about
=IF(COUNTIF(A$2:A2,A2)=1,B2,"")
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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