Forum Discussion
arisblan
Feb 19, 2025Copper Contributor
Dynamic Array filter multiple values
Is there a method to use the FILTER formula for filtering "table 1" based on values of table 2 thanks for helping
- Feb 21, 2025
One more
=FILTER( Table1, COUNTIF(Table2[Filter], Table1[Year]), "no data" )
HansVogelaar
Feb 20, 2025MVP
=FILTER(Table1, ISNUMBER(XMATCH(Table1[YEAR], Table2[FILTER])), "")
arisblan
Feb 21, 2025Copper Contributor
everything works!! thank you so much