I have one list of events people can sign up for, and another list of the total people who have signed up for an event.
The first collection works. It sums the total signers for an event.
ClearCollect(TotalSignees, AddColumns(GroupBy(SignUpList, "EventName", "TotalSignees"), "NumOfSignUps", Sum(TotalSignees, EventName = EventName)));
The second collection does not work. It's adding a number to every item on the list regardless of the event
ClearCollect(ProjectSignUpListWithVolunteerCount, AddColumns(ProjectsEventsList_SPList, "NumOfSignUps", LookUp(TotalSignees, EventName=EventName, NumOfSignUps)));
All I want to do is merge the collections and if there is match insert that number into the column and if there there are no matches add a zero