Hi @Albert Hockaday ,
Because the time range is limited to Monday to Friday of the next week, you could not use [Today] to limit the selection range. So you can try to create a flow as a workaround.
The overall idea is: Add a flag column to the list to determine whether the start time of the item is within the range of the next Monday to Friday of the start date, and then filter the view according to the flag.
1.If start date is the start time of the item, it can be judged whether the item is in it according to the time period from Monday to Friday next to the current time.
2.If start date is set to display the next week, then there should be another item start time column to determine whether the item start time is in the next Monday to Friday of start date.
The difference between the two lies in the comparison time that needs to be quoted in the next flow.
a)If it is the first, use utcNow() when getting the time.
b)If it is the second, refer to the start date when getting the time.
Below are the specific steps for your reference:
1)Create a flag column of type Y/N
2)Create a flow->See your flows->Automated cloud flow->When an item is created->Create
3)Choose Site Address, List Name, View->New step->Set initialization variable: DayofWeek->Set initialization variable: Test1->Set initialization variable: Test2
Formula for calculating the next Monday of the current or start date as a whole: [start date] - weekday([start date]) +8
Formula for calculating the next Friday of the current or start date as a whole: [start date] + 7 - weekday([start date]) +6
DayofWeek-- fx: dayOfWeek(utcNow())
Test1 -- fx: addDays(utcNow(),mul(variables('DayofWeek'),-1))
Test2 -- fx : addDays(variables('Test1'),8)
4)Condition: start date/item start time is in the range Monday to Friday.(the picture only limits the upper limit on Monday)
5) Judgment condition: if it is within the range, the flag is yes
6) When creating an item, it will judge. (the picture is executed according to the current time)
7) Finally, use the filter to filter according to the flag column
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.