I’m working on a cash flow management board and need a formula to set status based on if an item due date is this week, next week, or last week.
This basic formula gets me an output of Future or Past but I need something just a bit more precise and week based, not day based.
IF(FORMAT_DATE({Payment Due},“YYYYMMDD”)<=FORMAT_DATE(today(),“YYYYMMDD”), “future”,“past”)
I think WEEKNUM could be leveraged to return a week number that I can apply some arithmatic to and it gets me close on the first half of the formula. Like this:
IF(Weeknum({Payment Due})<=…
But the second half is weird. Can I somehow format either Today() or WEEKNUM() to output the week number for today rather than for a date column?
So glad @JCorrell was able to offer a possible solution for you here!
Let us know once you have a chance to check it out and if we can provide any further assistance
This was great Jim. Just enough information to get me on the right track but not so much that I didn’t learn a lot in the process. Thanks for your help!