Hello everyone, I've searched for various posts but cant seem to find what I'm looking for. I would really appreciate some help please.
I have a SharePoint list with several columns, including Title and Complete.
I have a gallery with the titles and a Complete button , that patches into SharePoint to say Complete 'Yes' next to the selected title.
Is there a way for my users to select/search multiple Titles and have them checked/highlighted and then just click the Complete button once, which would then put 'Yes' in SharePoint for all of the highlighted titles at the same time?
Thank you for any help
Here is a link to a video from Shane Young that should show you most of what you need to do.
Hi @pricey79 :
I've made a test for your reference:
1\I assume Complete is a Yes/No column
2\Add a blank gallery and set it's items property to:
Pricey79
OnSelect
Collect(Thecollection,ThisItem.ID)
3\Add a label control into this gallery
Text
ThisItem.Title
Color
If(ThisItem.ID in Thecollection,Red,Black)
4\Add a button outside the gallery and set it's OnSelect property to:
UpdateIf(
Pricey79,
ID in Thecollection.Value,
{Complete:true}
);
Clear(Thecollection)
Best Regards,
Bof
Thank you for your help, however the items stay red once the patch has completed, how would I reset those please?
User | Count |
---|---|
161 | |
86 | |
71 | |
64 | |
62 |
User | Count |
---|---|
208 | |
149 | |
95 | |
84 | |
66 |