Try
=LEN(A1)-LEN(SUBSTITUTE(A1,",",""))
that would return 6 for your example, it basically counts the commas
Hi
sorry, missed a bracket. try
=LEN(A1)-LEN(SUBSTITUTE(A1,",",""))+LEN(A1)>0
All right now we're getting very close. The first formula, like you
say, counts the commas, which is a workable solution. The only thing
I need to do is make the formula add one more to the answer so I don't
have to enter a comma after the last entry.
Ex: 66,23,x7x,4x2,23u,
Adding a comma to the last entry works if I remember to do it. How
would I change the formula so it adds one to the answer?
I still can't get the second formula to work. This time it returns
"true."
Thanks.