I have two SharePoint Lists.
One is Clients and one is Sales
Both have a "Client" column which is the client name.
I have a edit form in PowerApps and I can edit the client names in the Clients list, no problem. but I also want to update the client names across all sales records too if someone edits the name.
So onsuccess for the edit form, I added this:
UpdateIf(
VirtualPZone,
Client = OldClientName,
{Client: NewClientName}
)
It doesn't give me any errors, but it just doesn't update. I have verified the names in the SharePoint list match the variables in OldClientName.
Am I using UpdateIf incorrectly? Like I said it doesn't give me any errors.
Could it be because across Data Sources I have more than one "Client" column?
Thanks,
Terry