Goal:
2 SPL's, "Q Tasks" and "Q Completed". Both have a "Reviewed" column. PA has gallery with items set by filtering of "Q Completed" on ISBlank(Reviewed)=true. Reviewer has option to "Review All" items in gallery with checkbox. Once review is finished a button uses UpdateIf to update list records in both lists with review date.
Problem:
Can't figure out how to update all target records in "Q Tasks"
Attempt:
ForAll(Filter(WeekGallery.AllItems, WeeklyReview.Value),UpdateIf('Q Completed', Record_ID=WeekRecord.Text,
{Reviewed:WeeklyDate.SelectedDate})); //This part works, all list records updated//
ForAll(Filter(WeekGallery.AllItems, WeeklyReview.Value),UpdateIf('Q Tasks', TaskID=WeekID.Text,
{Reviewed:WeeklyDate.SelectedDate})); //This part only updates one record in list//