Reputation: 1
I'll start off by saying that I'm not very familiar w/ google sheets and its formulas. How would I go about solving this?
I have two columns: A and B. I want to count the cells under column B under these conditions:
Would this require multiple steps?
Upvotes: 0
Views: 30
Reputation: 1
try:
=COUNTA(IFNA(FILTER(B1:B, REGEXMATCH(B1:B&"",
TEXTJOIN("|", 1, FILTER(A1:A, COUNTIF(A1:A, A1:A)=1))))))
Upvotes: 1