Apr 29, 2021 08:53 AM
Hey Everyone -
Quick question, but I am stuck.
I have this formula to determine if my meeting happened this week or not
WEEKNUM(NOW()) = WEEKNUM({Meeting Date})
I would like to use a similar formula to find out if it was last week. My assumption is that I would use the same beginning and the meeting date field, but if I say less than it will give me all the previous meetings.
Any ideas?
Apr 29, 2021 09:02 AM
Try:
WEEKNUM(DATEADD(NOW(), -1, 'week')) = WEEKNUM({Meeting Date})
Apr 29, 2021 09:12 AM
Boom! Thank you much!