Adding a new row with audio

Hello the community,

I am creating a goal tracking app. I created a page on which I can choose which goal will my note be about, how much time I spent on it, and capture an audio transcription.
After registering the audio, an action triggers a new screen with the details of the notes.
The note is well created and appears in the glide table.
My problem is that when I finish the audio, a row table isn’t created and it’s always the same row in my “notes” glide table which is being edited, deleted my previous note.

Do you have an idea on how can I create a new row after finishing my audio capture without impacting any other row on the notes table?

Thank you for your help! :slight_smile:


You are using Set Column values in your action, which will always edit the same row.
What you want instead is an Add Row action.
But better still, use an Add Form.

1 Like

Agreed. You need some sort of form. I recommend a form container if you want it inline otherwise a form screen it works well.

1 Like

Thank you for your answers @Darren_Murphy & @Robert_Petitto. After adding a form screen, it works now! :slight_smile:

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.