Google-sheets – Importing data found to be true from one Google sheet to another

data validationfilterformulasgoogle sheetsgoogle-sheets-query

I am trying to find a way to import data (text) from one sheet to another, via the same book. I assume it's going to need an IF or IFS formula because I only want data is that found to be "TRUE" (via the checkbox ability) to be imported into a list that has other text.

So basically, I want the data from Row A if Row B is true into a separate sheet.

Here's the link: https://docs.google.com/spreadsheets/d/1rnjmGPyzj7YsGaO1M5h97c8GoJPzQeIUHkv3JGKbrL8/edit?usp=sharing

Best Answer

Use FILTER or QUERY

Example using FILTER

=FILTER('Sheet 1'!A:A,'Sheet 1'!B:B)