Google-sheets – way to count unique numbers and count unique text+numbers

formulasgoogle sheetsgoogle-sheets-arrayformula

For example:

Column A

1234
4567
2345
4356
a123
b345
c567

What formula to use so that when I count row 1-7, I get 4 counts of numbers and 3 counts of text+numbers?

Best Answer

=COUNTA(UNIQUE(A1:A))
=ARRAYFORMULA(COUNTA(IF(ISNUMBER(UNIQUE(A1:A)), 1, )))
=ARRAYFORMULA(COUNTA(IF(ISTEXT(UNIQUE(A1:A)), 1, )))

0