D
David P.
How would I do this?:
=IF(A comma is found in A1),...
Thanks.
=IF(A comma is found in A1),...
Thanks.
Rick said:I like this one best... one function call. Let's remove the comparison just
to shorten it up a bit...
=IF(COUNTIF(A1,"*,*"),"found","not found")
Dave Peterson said:I find using the comparison self-documenting.
Rick said:That is true enough (but I would guess doing introduces an extra, albeit
very quick, calculation to the formula).