It is the first time I am using Google sheet and I need to sort tables from two differents sheets. I want to keep only the ref that don't have a grade of A
here is a link in google sheet https://docs.google.com/spreadsheets/d/1quXkNuSYPF7MCs7_PGzjHKOLDf0TSvPqlEumNCWc0lc/edit?usp=sharing
February '22
March '22
Expected result (comparison between Feb and March)
Thanks for helping
try:
=QUERY({'February''22'!A:B; 'March''22'!A2:B};
"where Col2 <> 'A' and Col2 is not null"; 1)
or if you want only uniques:
=UNIQUE(QUERY({'February''22'!A:B; 'March''22'!A2:B};
"where Col2 <> 'A' and Col2 is not null"; 1))
Alternative:
1
.You can see the results in the "Feuille 4
" sheet in your google sheet sample.
Example # 1:
Get all data from the (February'22) at the "A" column - in the ranges: A2:A7
=QUERY('February''22'!A2:A7)
Example # 2:
Add value 0
when the value in the cells of the column "B" is equals to "A" - otherwise: 1
=IF(B2 = "A";0;1)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With