View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default counting a certain character

Try,

=LEN(A1)-LEN(SUBSTITUTE(A1,"_",""))

Mike

"James" wrote:

I have a cell with this the following data in it:
0800_______________________ 00000001 00005212 00012312

I would like to count the number of "_" in the cell. I have tried the
countif(A1,"*_*") but I only get a return of 1 count. I would like to know
how many of the "_" there are in the cell.

Thanks for the help.