Simple Trick: Keep using row data in same action *after* you already deleted the row

Ended up here with google for some reason.

Check out WithName in Coda | Formula library for a clearer pattern:

WithName(thisRow.relatedRow, theRowNeeded,
   RunActions(
        DeleteRows(thisRow),
        theRowNeeded.UpdateData 
    )
)

1 Like