Unique description List

tlc53

Active Member
Joined
Jul 26, 2018
Messages
399
Hi there,

I'm trying to create a unique list of all items which remain unresolved/does not have a resolved date allocated to it.

{=IFERROR(INDEX($B$15:$B$19,SMALL(IF($D$15:$D$19<>"",ROW($B$15:$B$19)),
ROW(1:1))-1,1),””)}


In column B I have the description (B15:B19)
In column D there is a date if the item has been resolved.

I would like the description of column B to appear from B47 down, if it does not have a date assigned to it in column D.

Can anyone see where I am going wrong with this formula? It currently returns #NAME?

Thanks!
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Hi TLC53,

Your ROW calculation will return 15 to 19 but your INDEX is only 5 rows so you're getting a #REF error.
The IFERROR fails because the double quotes aren't double quotes:

1581993143166.png

You could avoid the array formula by using the SMALL function of AGGREGATE

Book1
BCD
15Battery flat
16Fuse blown2/2/2020
17Switch broken
18Dry solder1/1/2020
19Capacitor blown
20
46
47Battery flat
48Switch broken
49Capacitor blown
50 
51 
Sheet1
Cell Formulas
RangeFormula
B47:B51B47=IFERROR(INDEX($B$15:$B$19,AGGREGATE(15,6,ROW($B$15:$B$19)-ROW($B$15)+1/($D$15:$D$19=""),ROWS(B$47:B47))),"")
 
Upvote 0
Solution
Hi TLC53,
=IFERROR(INDEX($B$15:$B$19,AGGREGATE(15,6,ROW($B$15:$B$19)-ROW($B$15)+1/($D$15:$D$19=""),ROWS(B$47:B47))),"")
Perfect!! Thank you so much! It's doing exactly what I wanted it to.
Really appreciate your help and your beautifully presented answer :)
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,399
Latest member
alchavar

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