I have an app that has Client Requests (table 1). When a request is approved a bot takes the values from table one and creates a Client record (table 2, email is the key). If a client submits multiple requests I would like to update the details of the Clients table (table 2) with the values from the Client Requests (table 1).
Example - Client Request Table:
Request One -
Client ID: UniqueID
Client Name: Mary
Client Email: mary@gmail.com
Client Phone: 555-111-1111
Request Two -
Client ID: UniqueID
Client Name: Mary
Client Email: mary@gmail.com
Client Phone: 555-444-4444
When the second request is approved I’d like the phone number to be updated from 555-111-1111 to 555-444-4444 based on matching the key-value field which is “Client Email”.
This is a simple SQL update but I cannot figure out how to do it for the life of me in AppSheet.
Any help would be greatly appreciated!!