Last active
June 10, 2023 12:09
-
-
Save RR-Helpdesk/96bcab5da177a92d360dfcf6167c70e0 to your computer and use it in GitHub Desktop.
Helpful Google Sheets Formulas #Sheets #Google
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://blog.coupler.io/filter-function-google-sheets/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=FILTER(IMPORTRANGE("spreadsheet", "cell_range"),[condition_1, condition_2,...]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=FILTER( | |
UNIQUE(cell_range), | |
ARRAYFORMULA( | |
COUNTIF(cell_range, | |
UNIQUE(cell_range))>1 | |
) | |
) | |
=iferror( | |
filter( | |
unique(A2:A), | |
arrayformula( | |
countif(A2:A, | |
unique(A2:A))>1) | |
) | |
) | |
=iferror( | |
filter( | |
unique(B2:B), | |
arrayformula( | |
countif(B2:B, | |
unique(B2:B))>1) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment