Listing next week's dates

Hello - I just discovered TextBlaze today and am loving playing around with it so far! I'm trying to find a way to list the days Monday-Friday of next week with a single snippet, e.g.

Monday 6/30
Tuesday 7/1
Wednesday 7/2
Thursday 7/3
Friday 7/4

I've gotten as far as using {time: dddd M/D ; shift=+1W <MON} but the issue I'm having is that depending on what day of the week I'm using this snippet, something will get messed up. In my case today (today is Tuesday), I get next Monday and Tuesday's dates fine but then it gives me Wednesday 6/25, since it thinks "next Wednesday" is tomorrow, not Wednesday of next week. Is there any way to write my snippet so that it is not dependent on what day of the week today actually is and have it always go to the next Monday and go Monday to Friday starting from that date? Thanks so much!

Hi @David_Kehlenbeck, welcome to the forum. :slight_smile:

You can chain multiple shift operations together to advance through consecutive days of the following week like this:

{time: dddd M/D; shift=+1D >MON}
{time: dddd M/D; shift=+1D >MON+1D}
{time: dddd M/D; shift=+1D >MON+2D}
{time: dddd M/D; shift=+1D >MON+3D}
{time: dddd M/D; shift=+1D >MON+4D}
{time: dddd M/D; shift=+1D >MON+5D}
{time: dddd M/D; shift=+1D >MON+6D}