Extract all unique cell contents based on combination of two columns

excellearner17

New Member
Joined
Nov 10, 2017
Messages
6
I have a long list (over 400 rows) of duplicated project names which have different actions and priorities.
On another tab I want to extract all the project names + action combination that have top priority assigned. How do I do that?

Example

Raw data tab
Project nameActionPriority
BlueContact MarkTop priority
BlueSign agreementNot top priority
BlueFinalise presentationTop priority
RedCall JessicaTop priority
GreenSchedule meetingNot top priority

<tbody>
</tbody>

Output tab
Project nameActionPriority
BlueContact MarkTop priority
BlueFinalise presentationTop priority
RedCall JessicaTop priority

<tbody>
</tbody>
Thank you! I've been breaking my head trying to figure this out - any help will be very much appreciated! :)
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Sort of, but I want to do that in another tab without having to copy the whole dataset and then filter - I want a table that refers back to the raw data and extracts the information.
Is this possible?
 
Upvote 0
Here is one way.
NOTE: the formula in D10 is an array formula and must be entered with CTRL-SHIFT-ENTER then drag down the row.
Formula in A10 would be copied down and across.
Excel Workbook
ABCD
1Project nameActionPriority
2BlueContact MarkTop priority
3BlueSign agreementNot top priority
4BlueFinalise presentationTop priority
5RedCall JessicaTop priority
6GreenSchedule meetingNot top priority
7
8
9Project nameActionPriorityRow ID
10BlueContact MarkTop priority1
11BlueFinalise presentationTop priority3
12RedCall JessicaTop priority4
Sheet
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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