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
[TABLE="width: 500"]
<tbody>[TR]
[TD]Project name[/TD]
[TD]Action[/TD]
[TD]Priority[/TD]
[/TR]
[TR]
[TD]Blue[/TD]
[TD]Contact Mark[/TD]
[TD]Top priority[/TD]
[/TR]
[TR]
[TD]Blue[/TD]
[TD]Sign agreement[/TD]
[TD]Not top priority[/TD]
[/TR]
[TR]
[TD]Blue[/TD]
[TD]Finalise presentation[/TD]
[TD]Top priority[/TD]
[/TR]
[TR]
[TD]Red[/TD]
[TD]Call Jessica[/TD]
[TD]Top priority[/TD]
[/TR]
[TR]
[TD]Green[/TD]
[TD]Schedule meeting[/TD]
[TD]Not top priority[/TD]
[/TR]
</tbody>[/TABLE]

Output tab
[TABLE="width: 500"]
<tbody>[TR]
[TD]Project name[/TD]
[TD]Action[/TD]
[TD]Priority[/TD]
[/TR]
[TR]
[TD]Blue[/TD]
[TD]Contact Mark[/TD]
[TD]Top priority[/TD]
[/TR]
[TR]
[TD]Blue[/TD]
[TD]Finalise presentation[/TD]
[TD]Top priority[/TD]
[/TR]
[TR]
[TD]Red[/TD]
[TD]Call Jessica[/TD]
[TD]Top priority[/TD]
[/TR]
</tbody>[/TABLE]
Thank you! I've been breaking my head trying to figure this out - any help will be very much appreciated! :)
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
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,226,063
Messages
6,188,655
Members
453,489
Latest member
jessrw

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