I have managed to work it out part-way, but the below formula is only writing the value to the first date in the collection:
ClearCollect(
DateRange,
AddColumns(
FirstN(
[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29],
DateDiff(STARTDATE.SelectedDate, ENDDATE.SelectedDate, Days) + 1),
"Day",
"Day " & (Value + 1),
"Date",
DateAdd(STARTDATE.SelectedDate, Value, Days)
));ForAll(DateRange,Patch(SHAREPOINTLIST,LookUp(SHAREPOINTLIST,DATECOLUMN in DateRange.Date),{NUMBERCOLUMN: SLIDER.Value}))
Everything in it works, the collection returns the dates I expected, and the slider value is patched correctly, but only to the FIRST item from the collection. I assume this is due to using Lookup, but Filter doesn't seem to work.
Any ideas?