How to dynamically deliminate a list with blanks cells?

mdeanh5252

New Member
Joined
Sep 5, 2016
Messages
29
Hello,
I have been searching and trying all sorts of dynamic array formulas that will eliminate out the blank cells from a list that populates based on user input, but haven't had a lot of luck.

I have currently this equation:
=IFERROR(INDEX(Section_List,MATCH(0,COUNTIF(C$635:C635,Section_List),0)),"")
With this Named Range Formula:
='Sheet1'!$B$636:INDEX('Sheet1'!$B$636:$B$655,MATCH(REPT("z",255),'Sheet1'!$B$636:$B$655))

Now this works to delimit out duplicates which i also have...

How might i modify this to remove blanks from the delimited list?

I have tried this equation that almost does it but the list comes out upside down?:
=IFERROR(LOOKUP(2,1/((COUNTIF($D$635:D635,$B$636:$B$655)=0)*($B$636:$B$655<>"")),$B$636:$B$655),"")

Anybody have a solution???
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
See if this works

=IFERROR(INDEX(Section_List,MATCH(0,(Section_List="")+COUNTIF(C$635:C635,Section_List),0)),"")
Ctrl+Shift+Enter

M.
 
Upvote 0

Forum statistics

Threads
1,223,933
Messages
6,175,470
Members
452,646
Latest member
tudou

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