I have a formula =SPLIT(E2,"/")
and I want to find the length of the array that the result returns.
I tried:
=ARRAYFORMULA(COUNT(SPLIT(E2,"/")))
=COUNT(SPLIT(E2,"/"))
=LEN(SPLIT(E2,"/"))
You could try COUNTA
as this one returns the number of values in a dataset, instead of COUNT
:
=COUNTA(SPLIT(E2,"/"))