My gallery is filtering a SP list. I used "GroupBy" to sum the quantity of the items that need ordering. I need to be able to select the grouped items via a check box and then change their order status to "Ordered". How can I accomplish this?
Solved! Go to Solution.
Can you try to update the expression as:
ForAll(GalleryName.AllItems, If(CheckBoxName.Value, UpdateIf(DataSourceName, ColumntoIdentity = ControltoDisplay.Text,{Status:"Ordered"})))
Here, you need to replace the typos with the actual name of control and columns.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Can you try to update the expression as:
ForAll(GalleryName.AllItems, If(CheckBoxName.Value, UpdateIf(DataSourceName, ColumntoIdentity = ControltoDisplay.Text,{Status:"Ordered"})))
Here, you need to replace the typos with the actual name of control and columns.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Thanks. For those of you curious, here is the code: ForAll(BrowseGallery1.AllItems, If(Checkbox1.Value = true, UpdateIf(OrdersPending,PartNumber=BrowseGallery1.Selected.PartNumber,{OrderStatus:"Ordered"})))
User | Count |
---|---|
183 | |
110 | |
88 | |
44 | |
42 |
User | Count |
---|---|
229 | |
108 | |
107 | |
68 | |
68 |