Generate list based on another list without FALSE values

Britcramble

New Member
Joined
Aug 17, 2018
Messages
3
Hello,

I have a dynamic list in column A which contains various names, and multiple instances of the value FALSE.
I would like another list in column B, which has the same values, but without the FALSE values.

For example:
Blue
Yellow
Green
FALSE
Turqoise
FALSE
FALSE
Black
FALSE
White

Would become:
Blue
Yellow
Green
Turqoise
Black
White

I can't quite work out a formula to do it. Thanks in advance!
Cheers.
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
In B2 control+shift+enter, not just enter, and copy down:

=IFERROR(INDEX($A$2:$A$100,SMALL(IF($A$2:$A$100=FALSE,"",ROW($A$2:$A$100)-ROW($A$2)+1),ROWS($B$2:B2))),"")
 
Upvote 0
Sorry I should have pointed out that I want to use a formula, and not a filter, as the list will be referenced on other sheets.
 
Upvote 0

Forum statistics

Threads
1,214,636
Messages
6,120,666
Members
448,977
Latest member
moonlight6

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