Help

Show Records from Last Week

888 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Jason_F
6 - Interface Innovator
6 - Interface Innovator

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?

2 Replies 2

Try:

WEEKNUM(DATEADD(NOW(), -1, 'week')) = WEEKNUM({Meeting Date})

Boom! Thank you much!