Formula wildcards

  • Thread starter Thread starter Boenerge
  • Start date Start date
B

Boenerge

Hi,
In the following formula the "*" I thought was a wildcard character. I am
using the cell to report a percentage. I want the "*" to count anything that
has been placed in a cell e.g. a date or NA or 0.
Can anyone help with the formula?
Thanks in advance
Jason





=COUNTIF(D6:D42,"*")/ROWS(D6:D42)
 
It counts text only

replace the countif part by this

=COUNTA(D6:D42)


--


Regards,


Peo Sjoblom
 
In the following formula the "*" I thought was a wildcard character.
=COUNTIF(D6:D42,"*")/ROWS(D6:D42)

It is a wildcard but it only represents *text* entries.

Try this:

=COUNTA(D6:D42)/ROWS(D6:D42)
 
Back
Top