I have a cell that uses a drop-down list that allows for multiple selections. How do I count the number of selections?
I used this: =LEN(A2)-LEN(SUBSTITUTE(A2,",",""))+1
But this doesn't account for blank or no selection. How can I display 0 as well if there is no selection?
If your selections do not have spaces then substitute commas for spaces, trim the result then count for spaces as above with commas.
If you want your formula to ignore consecutive comma's:
It's doubled-up to account for odd numbers of sets of commas.
or to totally jack-all @Jeeped's suggestions, if the values in your drop down do not have spaces, a better way might be: