Report Filter Use Case: Monday - Sun, Next 2 Weeks | Community
Skip to main content
KierstenKollins
Community Advisor
Community Advisor
April 3, 2026
Solved

Report Filter Use Case: Monday - Sun, Next 2 Weeks

  • April 3, 2026
  • 1 reply
  • 42 views

I have a use case where I need to be able to filter on a report to pull in Monday through Sunday for the next week into the following week. For example, dates would be 4/6 - 4/19. This report is ideally ran on Friday’s but could be run on a Thursday if there was a holiday.

 

I have set up a filter against my date field to show $$TODAY+3d between $$TODAYe+16d which does work if the report is only run on a Friday.

 

Is this possible to hard code or would I need to have the end user default to using a prompt to ensure accuracy.

 

Thank you!

Best answer by AmyReilly

@KierstenKollins Agree with ​@skyehansen ‘s suggestion on DAYOFWEEK. You’ll want to create a custom field with the DAYOFWEEK function on your desired date. Then, I think you can add the filter you need with an OR statement.

 

Date is next week and day of week is >= 2 

OR

Date is following week

 

(*I used planned completion date as the example, but you can use whichever date you need)

1 reply

Alex_Di
Level 3
April 3, 2026

Hi ​@KierstenKollins 

 

Have you tried something like this? Starting with the built in filter of “Next Week” and making it +2

 

I used Planned Completion Date to filter on since I was not sure what field you were using. 

 

plannedCompletionDate=$$TODAYb+1w
plannedCompletionDate_Mod=between
plannedCompletionDate_Range=$$TODAYe+2w

KierstenKollins
Community Advisor
Community Advisor
April 3, 2026

I am using a custom date field. This filter unfortunately returns a Sun through Sat date range for the next 2 weeks. Thank you for trying to help. 

skyehansen
Community Advisor and Adobe Champion
April 3, 2026

feeling my way out here… is it possible to put in another calculated field next to your date field whose purpose is to identify what day of the week it is (weekend or weekday), and then use Alex’s filter + “weekday”? The DAYOFWEEK function looks good for this type of thing.