filter function

Tej92

Board Regular
Joined
Sep 27, 2022
Messages
73
Office Version
  1. 365
Platform
  1. Windows
Hello all, i'm trying to bring all the data in one column from different columns.
from range A3:BN3 i have multiple filter functions that return values.
now i'd like all of those lists created by filter functions to be in one column, I've tried:
=filter(a3:bn3, a3:bn3 <> "") result: only the values at the top of the previous filter arrays in each column
=filter(a3:bn11, a3:bn11 <> "") result: #VALUE! error

any help will be greatly appreciated.

thank you
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Not sure how long your individual filter lists are so you may not need a number as big as I have used but try

Excel Formula:
=TOCOL(A3:BN10000,1,1)
 
Upvote 1
Thank you both for the reply.
It works well!! is there a way for it to ignore blanks in the first row? it is ignoring the blanks but not from a column that has nothing in it.
Edit: managed to ignore first blank of the column by using =FILTER(BO:BO,BO:BO <> "").

thanks again for the replies
 
Upvote 0
A couple of other options
  1. Build what you have done into a single formula
    Excel Formula:
    =LET(tc,TOCOL(A3:BN10000,3,1),FILTER(tc,tc<>""))

  2. Change your filter functions in row 3 to return NA() (or some other error) instead of "" if no filtered data exists - a simple example =FILTER(1,1>5,NA())
    and then use this in BO
    Excel Formula:
    =TOCOL(A3:BN10000,3,1)
 
Upvote 1

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

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