Forum Discussion
greinholds
Jan 05, 2024Copper Contributor
Filter function with multiple tables/arrays
I have a sheet with data in it (customers contacts in this example, where columns contain name, surname, company and email) and with the following formula I can use a cell (F1) to enter search criter...
- Jan 05, 2024
If you have Microsoft 365, you can use VSTACK to combine the results of three FILTER formulas
=VSTACK(FILTER(data on Customer batch 1), FILTER(data on Customer batch 2), FILTER(data on Customer batch 3))
HansVogelaar
Jan 05, 2024MVP
If you have Microsoft 365, you can use VSTACK to combine the results of three FILTER formulas
=VSTACK(FILTER(data on Customer batch 1), FILTER(data on Customer batch 2), FILTER(data on Customer batch 3))
M_Carr1996
Mar 31, 2025Copper Contributor
What can i use if i have more that 3 sets of data to filter?
- HansVogelaarApr 02, 2025MVP
You can add more FILTER functions to the VSTACK formula.