This for interest only. I needed to create a list of dates based on a given start date and any number of days from that date. Each date in between need to be listed. I achieved teh result using sequence(). The problem with sequence() is it converts the dates to a number and I needed it to be date. MY solution was:
1. Set(Datenumber,Value(Text(Today(),"[$-en-US]yyyymmdd"))) //where Today can be a date picker date and result is a number like 20210501
2. ClearCollect(MyTable,Sequence(7,Datenumber)) //This creates a sequence based on the date number. The 7 can be a numeric value variable
3. Add a gallery Based on the collection
4. In gallery field default use a function like
DateValue(Right(Text(ThisItem.Value),2) & "/" & Right(Left(Text(ThisItem.Value),6),2) & "/" & Left(Text(ThisItem.Value),4),"en-GB")
// This gave a sequential list of dates for 7 days