Hi All-
I am working on my first Canvas app in Power Apps. I have a date picker (DatePicker1), a Horizontal Gallery (gal_Calendar_Days), and a Label (lbl_SunDate) on my screen. I want to select a date in the date picker (any date in a week), and have the horizontal gallery display the week, Sunday to Saturday. I have the following formulas:
In gal_Calendar_Days.Items:
ForAll(Sequence(7), {date: DateAdd(DatePicker1.Value, -Weekday(DatePicker1.Value, StartOfWeek.MondayZero), Days)})
In lbl.SunDate.Text:
Text(ThisItem.date-Weekday(ThisItem.date,2)+1, "dddd m / dd")
When I select a date, the calendar populates with the Monday date of the selected week, but the days do not increment. I've been working on this for days, with little progress. Can somebody guide me in the right direction?
Thanks!

