Welcome to the Smartsheet Forum Archives


The posts in this forum are no longer monitored for accuracy and their content may no longer be current. If there's a discussion here that interests you and you'd like to find (or create) a more current version, please Visit the Current Forums.

Countif with wildcard

Options

Need some ideas how to count number of cells in a range with any text in them. 

The formula below returns 0 (when all cells in the range contain text)

=COUNTIF(Column Name]10:[Column Name]19, "*")

 

Any ideas for text wildcard?

Thanks

Tags:

Comments

  • Atus Bartal
    Atus Bartal ✭✭✭✭✭✭
    Options

    Nichole,

    this formula is fine if "any text" does not refer strictly to text (or strings) in the range of cells: 

    =COUNTIF(Column Name]10:[Column Name]19, "<>"+"")

    if there are numbers and texts in the range and you want to count the cells only with texts, use this formula: 

    =COUNTIF(Column Name]10:[Column Name]19, ISTEXT(@cell))     [thanks to SS_Devs for @cell! :)]

     

    Hope this helps

    Atus

     

     

  • Way to go SS_Devs! Works great for my need.

    Muchas Gracias Atus

This discussion has been closed.