List values by Criteria

mucah!t

Well-known Member
Joined
Jun 27, 2009
Messages
593
Hello All,

I'd like the names from column C, adjacent to the word "new" in column A, listed in column E.

Any ideas?

Excel Workbook
BCDE
3NewAlexAlex
445TueJohn
58WedMatthew
6NewJohnPeter
77Thu
865Fri
965Sat
10NewMatthew
1112Wed
1245Thu
1369Fri
1474Sat
1554Sun
16NewPeter
1735Sat
1854Sun
Sheet1
Excel 2003
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
In D3 enter:
Code:
=COUNTIF(B3:B18,"New")

Then in E3:

Code:
=IF(ROWS($A$1:$A1)>$D$3,"",INDEX($C$3:$C$18,SMALL(IF($B$3:$B$18="New",ROW($B$3:$B$18)-ROW($B$3)+1),ROWS($A$1:$A$1))))
adjust ranges to suit and confirm with CTRL+SHIFT+ENTER and copy down
 
Upvote 0
Sorry, my bad:

Code:
 =IF(ROWS($A$1:$A1)>$D$3,"",INDEX($C$3:$C$18,SMALL(IF($B$3:$B$18="New",ROW($B$3:$B$18)-ROW($B$3)+1),ROWS($A$1:$A1))))

confirmed with CTRL+SHIFT+ENTER and copied down...
 
Upvote 0

Forum statistics

Threads
1,213,482
Messages
6,113,915
Members
448,532
Latest member
9Kimo3

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