Manual Trigger - Can't delete or edit a row

I have an automation that triggers manually. I can add the Delete Row or Set Column Values, but I can’t configure them.
It won’t let me choose the row that I need to control.
The pull down menu doesn’t work.

I’ve tried to add it to different automations, and it won’t work on any manual automaiton.

What triggers the workflow?

Something like the App Interaction workflow runs client side and has a row to work with because it’s being triggered by a user while viewing a specific row.

The Manual workflow runs server side, so it’s not connected to a user session and doesn’t know where to start. Something like that is usually part of a bigger loop or a Query that would first narrow in on a specific row or set of rows. You would need to set up that query and/or loop to aquire rows for the set column or delete row actions to work with.

It’s tied to a button the user clicks.
The button feeds the Row ID to the workflow.
I was planning to have it point to that.

However, the pulldown menu doesn’t open at all so I can’t select anything.

Have you tried adding a query to the workflow that finds the correct row or rows based in that passed in Row ID? I believe the query should then be available for other actions in the workflow.

1 Like

Usually what I does is query out the RowID from the trigger’s body, then do a query/loop and filter to the right row using that RowID.

1 Like

Thank you. That resolved it!

2 Likes