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,"/"))
=COLUMNS(SPLIT(E2,"/"))
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