Update a second sheet with changed values from first sheet on update

It was easy to add a record to a second sheet with an action and a workflow.
I am passing in a unique identifier.

I want to be able to update values in the second table when I do updates on the first sheet.
I donโ€™t want to have a ref or key relationship between the tables.

How do we achieve this ?

Solved Solved
0 3 170
1 ACCEPTED SOLUTION

Thanks Aleksi.
Your example provided the path to the answer.

For anyone else wanting to know how to do this use the expression assistant and similar select filters for your sheet data.

First Action Gets the referenced row
SELECT(Client[ID],[ID]=[_THISROW].[ID])

Second Action Data: Set the value of some values in this row.
SELECT(Client[FirstName], ([_THISROW].[ID] =[ID])) etc

View solution in original post

3 REPLIES 3

Please check the sample app โ€œUpdateEventActionโ€ from https://www.appsheet.com/portfolio/531778. It uses related table structure but the principle is the same without Ref field.

Thanks Aleksi.
Your example provided the path to the answer.

For anyone else wanting to know how to do this use the expression assistant and similar select filters for your sheet data.

First Action Gets the referenced row
SELECT(Client[ID],[ID]=[_THISROW].[ID])

Second Action Data: Set the value of some values in this row.
SELECT(Client[FirstName], ([_THISROW].[ID] =[ID])) etc

Youโ€™re welcome

Top Labels in this Space