Formula wildcards

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)
 
P

Peo Sjoblom

It counts text only

replace the countif part by this

=COUNTA(D6:D42)


--


Regards,


Peo Sjoblom
 
T

T. Valko

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top