Hi,
I have two lists, a "Notes" list and a "Customer" list. I am trying to update a field in the Customer list (called "Date Last Contacted") based on the date a new note is added in the "Notes" list. Both lists have a customer identifier (Account Ref).
I am fairly new to PowerApps and so am assuming that Patch is the correct method for doing this?
If so, the patch statement I have so far is as follows:
Patch(Customer, LookUp(Customer, Gallery6.Selected.'Account Reference' in Customer.'Account Reference'), {Date_x0020_last_x0020_contacted: Today())}
This doesnt seem to show any errors but neither does it put today's date in the relevant Customer record.
Any help would be greately apprecaited.
James