Skip to main content
Solved

Reoccurring date period filter till a certain date of the week

  • December 16, 2020
  • 2 replies
  • 33 views

Forum|alt.badge.img+12

Hello Everyone,

I would like to create a formula that defines a range of dates depending on the due date within next Monday: as follows
filter content that due date is coming on till next Mondy only then resets again on Tuesday and shows me what is coming till next Monday.

Thank you Guys

Best answer by augmented

I did it like this. I added two columns, though you could consolidate wherever you want.

First, find the date of the next Monday.

Then, calculate the number of days from the due date to the next Monday.

Filter on {Days Before Due} where it is >=0 and < 7.

Should work or at least it’s a start.

2 replies

Forum|alt.badge.img+18
  • Inspiring
  • Answer
  • December 17, 2020

I did it like this. I added two columns, though you could consolidate wherever you want.

First, find the date of the next Monday.

Then, calculate the number of days from the due date to the next Monday.

Filter on {Days Before Due} where it is >=0 and < 7.

Should work or at least it’s a start.


Forum|alt.badge.img+12
  • Author
  • Known Participant
  • December 19, 2020

I did it like this. I added two columns, though you could consolidate wherever you want.

First, find the date of the next Monday.

Then, calculate the number of days from the due date to the next Monday.

Filter on {Days Before Due} where it is >=0 and < 7.

Should work or at least it’s a start.


Thanks @augmented, That was a start, but it solved my problem entirely. appreciate it.