Trigger an action automatically after a table refresh

Hi everyone,

I’m working with a table that refreshes automatically (a sync table), and I’d like to know if there’s a way to trigger an action right after the refresh is completed.

The goal is to run an action (for example, an automation, a formula, or a custom action) only once the table has fully finished updating, without any manual interaction.

Is there a native way to do this in Coda, or any recommended workaround to detect when the refresh is done and then trigger an action?

Thanks in advance for your help.

1 Like

You could have the automation refresh the table every hour/day with RefreshTable() on step 1 and then use the following steps for the rest of your actions.

2 Likes

That wouldn’t work for me because I needed it to happen immediately. In any case, I solved it by adding a 30-second delay to give the table time to refresh. I used this formula in the button: _delay(secondaction, 30000)

Sorry, I didn’t explain myself well :sweat_smile: