COUNTIFS formula to pull number of overdue tasks associated with owner

I am trying to pull data for a Sheet Summary with this formula:

=COUNTIFS([Owner:Owner], "jane doe", [Deadline:Deadline], "<" & TODAY())

I am getting an unparseable error, it seems to be around the () next to TODAY.

What do I need to change to have my formula be correct?

Best Answer

  • bisaacs
    bisaacs ✭✭✭✭✭
    Answer ✓

    Hey @Abby Stanek,

    I just realized what the issue is! Remove all the brackets around your column ranges:

    =COUNTIFS(Owner:Owner, "jane doe", Deadline:Deadline, <TODAY())

    You only use brackets in ranges if the column name has a space in it, otherwise don't use them for one word column titles, like so:

    =COUNTIFS([Owner Name]:[Owner Name], "Jane Doe", Deadline:Deadline, <TODAY())

    If my response was helpful in any way (or answered your question) please be sure to upvote it, mark it as awesome, or mark it as the accepted answer!

    I'm always looking to connect with other industry professionals, feel free to connect with me on LinkedIn as well!

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!