Formulas and Functions

Formulas and Functions

Ask for help with your formula and find examples of how others use formulas and functions to solve a similar problem.

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

  • ✭✭✭✭✭
    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

  • ✭✭✭✭✭

    Hey @Abby Stanek,

    You shouldn't need the quotes around the <, it should just look like this:

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

    Hope this helps!

    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!

  • I just switched it to the below formula and am still getting an unparseable error

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

  • ✭✭✭✭✭
    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!

  • edited 05/21/24

    This did it!

  • ✭✭✭✭✭
    edited 05/21/24

    NVM

    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!

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!

Trending in Formulas and Functions