Help with Eisenhower Matrix xls

NotASuperGenius

Board Regular
Joined
Jun 17, 2002
Messages
62
Good evening friends. I am working on a spreadsheet that includes "initiatives" that have been bucketed into a pseudo-Eisenhower Matrics (Do first, Do next, Do later, Delete). The spreadsheet layout is something like below (Initiatives in column A, Priority in column J and E.Sort in column N). I have managed to use {=IFERROR(INDEX($A$2:$A$185, SMALL(IF(Q$1=$N$2:$N$185, ROW($A$2:$A$185)-1,""), ROW()-1)),"")} do capture the E.Sort. So I have a list of all the "Do first" initiatives. What I would like to do is extend the sort by including "Priority" (High, Medium, Low). So I can display all the "High, Do first" initiatives. My attempts to combine the forumula above with another lookup haven't worked so I have combined A & J in a new formula but there has to be a more elegant way. Your help, as always, is appreciated - Cheers, NASG

Initiative | Priority | E. Sort
-
Margaritas | High | Do first
-
Tacos | Low | Delete
-
Salsa | Medium | Do first
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.

Book1
AJNOPQRST
1InitiativePriorityE. SortHigh
2MargaritasHighDo firstDo First
3TacosLowDeleteIdxInitiativePriorityE. Sort
4SalsaMediumDo first1MargaritasHighDo first
5TangoHighDo First4TangoHighDo First
6
7
Sheet1


In Q4 control+shift+enter, not just enter, and copy down:
Rich (BB code):
=IFERROR(SMALL(IF($J$2:$J$185=$Q$1,IF($N$2:$N$185=$Q$2,ROW($A$2:$A$185)-ROW($A$2)+1)),ROWS($Q$4:Q4)),"")

In R4 just enter, copy across, and down:
Rich (BB code):
=IF(Q4="","",INDEX($A$2:$N$185,$Q4,MATCH(R$3,$A$1:$N$1,0)))
 
Upvote 0
My apologies for the feature creep but...I've moved "Priority" and "E.sort" into dropdown menus so that I can select "High" and "Do first". Your formula works perfectly. If I wanted to only display all the "High" items or all the "Do first" items could that be done?
 
Upvote 0
My apologies for the feature creep but...I've moved "Priority" and "E.sort" into dropdown menus so that I can select "High" and "Do first". Your formula works perfectly. If I wanted to only display all the "High" items or all the "Do first" items could that be done?

Yes. You can leave Q1 or Q2 or both empty.


This flexibility requires us to only change the formula of Q4...

Control+shift+enter, not just enter, and copy down:

Rich (BB code):
=IFERROR(SMALL(IF($J$2:$J$185=IF($Q$1="",$J$2:$J$185,$Q$1),IF($N$2:$N$185=IF($Q$2="",$N$2:$N$185,$Q$2),ROW($A$2:$A$185)-ROW($A$2)+1)),ROWS($Q$4:Q4)),"")
 
Upvote 0

Forum statistics

Threads
1,214,935
Messages
6,122,337
Members
449,077
Latest member
Jocksteriom

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