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.

Due this week formula

✭✭✭
edited 06/14/23 in Formulas and Functions

I am using this formula =IF(WEEKNUMBER([End Date]@row) = WEEKNUMBER(TODAY()), "This week", "-") to pull a report if a task is due this week.


The formula is pulling tasks that were completed a year ago and pulling them into the report as due this week.

How do I correct this?


Best Answer

  • ✭✭✭✭✭
    Answer ✓

    =IF(AND(
    
    WEEKNUMBER([End Date]@row) = WEEKNUMBER(TODAY()), 
    YEAR([End Date]@row) = YEAR(TODAY())), 
    
    "This Week", "-")
    

    ...

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!

Trending in Formulas and Functions