Forum Discussion
OlllieMollie92
Nov 24, 2022Copper Contributor
Show data by default without hitting Reapply in Sort&Filter menu
Hello, Could you please help me out with automating a filter as follows. 1. I populate data into Sheet 1, choosing a Response from column D. It can be Yes, Unknown, No. 2. In sheet 2 I ...
- Nov 24, 2022
You should refer to the sheet in the conditions too, and use + instead of *:
=FILTER(Worksheet!B2:D1000, (Worksheet!D2:D1000="No")+Worksheet!D2:D1000="Unknown"), "")
HansVogelaar
Nov 24, 2022MVP
Do you have Microsoft 365 or Office 2021? If so, you can use the FILTER function
OlllieMollie92
Nov 24, 2022Copper Contributor
Thank you for reaching out so quickly - much appreciated!
I have an 0365 license...
I tried using the Filter function, however, I am sure I am missing something...
I only need to bring and refresh automatically the questions answered with No and Unknown..
- HansVogelaarNov 24, 2022MVP
You should refer to the sheet in the conditions too, and use + instead of *:
=FILTER(Worksheet!B2:D1000, (Worksheet!D2:D1000="No")+Worksheet!D2:D1000="Unknown"), "")
- OlllieMollie92Nov 25, 2022Copper ContributorThank you, Hans! I have applied the formula with success.