Hi @Anonymous ,
The first thing you need to do is collect the filtered data
ClearCollect(
colFirstStage,
Filter(
MySPList,
<However I am filtering it>
)
)
Then you can add some numbers to it
Clear(colNextStage);
ForAll(
FirstStage,
Collect(
colNextStage,
Last(
FirstN(
AddColumns(
FirstStage,
"RowNumber",
CountRows(colNextStage) + 1
),
CountRows(colNextStage) + 1
)
)
)
)
Then put some dates in it
Clear(colLastStage);
ForAll(
colNextStage,
Collect(
colLastStage,
AddColumns(
colNextStage,
"MyDate",
DateAdd(
YourDatePicker.SelectedDate,
RowNumber-1,
Days
)
)
)
)
You would put the day you wanted to start in the date picker.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.