Hi all,
I created a Blank horizontal gallery with timesheet lines. In this gallery, I created a vertical container with labels to display the information for that timesheet line. On top of the gallery, I created headers with the dates of a certain week, based on a datepicker (so 7 dates). How can I make sure that, for each date, the horizontal gallery only shows the items of the specific day that matches the date in the header?
Hope anyone can help!
Thanks in advance.
Hi @fleur2 ,
According to your statement, I make a demo for your reference.
My data source list from SharePoint is named "Datetime". I will use below function to get weekday of that datetime and determine whether we should display it.
ClearCollect(bb,Filter(Datetime,Weekday(Datetime,2)=1))
If I pick Friday's button, only today's item will be displayed:
Refer to this link for details about weekday() function:
Best regards,
Community Support Team _ Wenjuan Zou
If this post helps, then please consider Accept it as the solution to help the other members find it.