Home > Net >  Filter formula with 2 conditions
Filter formula with 2 conditions

Time:04-05

I am having a hard time figuring out how to get this to work on Google Sheets. I am trying to create a player pool based on the checkbox on a different tab. However, I want it to look for a checkmark, then look at the position, and then bring in the data.

Checkbox is in column A. Player position is in column H.

=if(and('Hitter Gameday'!A:A=true,'Hitter Gameday'!H:H="SS"),filter('Hitter Gameday'!B:X)) 

Thanks for any help anyone can provide!

CodePudding user response:

Try

=iferror(filter('Hitter Gameday'!B:X, 'Hitter Gameday'!A:A=true, regexmatch('Hitter Gameday'!H:H, "C.*")))

and see if that works?

  • Related