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.

I need to build a formula that looks at some cells in a column but not all of them.

Options
Rob Peek
Rob Peek
edited 12/09/19 in Archived 2016 Posts

Hi everyone,

I'm trying build a formula that looks at a column of check boxes, and if certain boxes are checked off, it will give me a "green light".

 

Here is the formula that currently works:

=IF(COUNTIF(Completed13:Completed26, 0) > 0.5, "Red", "Green")

 

It compiles all the check boxes in my column from row 13 to 26, however I need it to omit at least one cell, potentially more.

Any help or suggestions are greatly appreciated!

 

 

Comments

  • JamesR
    JamesR ✭✭✭✭✭✭
    Options

    Rob,

    It depends on what is in the cells you want to omit.  You may be able to use an ANS function in the condition portion of the IF Function.

     

    Need more info to take it further.

     

  • Rob Peek
    Options

    It's a simple checklist that I modified from a template. The cells in the "completed" column are either checked or not checked. The function should look at the cells and see if the required portions are checked off. 

    Here's a screenshot of how it's currently set up. The highlighted cells are what I'm having problems with. I can set it up to look at the entire column and it works just fine, but if I want to omit 1 or 2 checkboxes, I am running into trouble.

    Does this help?

    Screenshot 2016-01-27 09.21.54.png

  • JamesR
    JamesR ✭✭✭✭✭✭
    Options

    Try countifs().

    There needs to be a value somewher that uniquly identifys the row(s) you do not want included ub the count.

    The first two arguments will count the number of cells that meet your criteria (0) but only those that also meet the other arguments (<> "Do not count") for example.

     

    COUNTIFS(): Applies criteria to cells across multiple ranges and counts the number of times all criteria are met
    • Example: =COUNTIFS(Done:Done, 1, [Task Name]:[Task Name], "Task A")
    • Result: 1
This discussion has been closed.