I have a scheduling app ready, but lately several actions just stopped working. For example, the action “GO BACK”.
But this is not the case.
The current problem is when I am going to finish a schedule by adding a new row in the spreadsheet containing the selected information, and this information is not being written on that line.
You are using the user profile table, but you are using it incorrectly. A user isn’t signed in so when you try to retrieve values from the user profile, it’s actually empty because nobody is signed in, so the user profile cannot attach to the signed in user’s user profile row.
I would suggest either using the normal glide sign in options, which would generate a user row for each user, and then your action can pull values from the user profile, or the Datas table should have single value columns that retrieve the name from the user table.
Like I said, the user profile table is normally used when users actually sign into the app, but you are using it in a different way, which is causing some misunderstanding in how it works.
Regardless if it used to work, you are previewing the app as ‘anyone’, which means you are previewing as a non-signed in user. At the same time, your action is set to retrieve the Profissional and Email Profissional values directly from the user profile of the signed in user. That’s not going to work because a user is not signed in so the user profile can’t attach to any rows in the user table. You would have to instead bring the values into the Datas table using single value columns like I outlined in my other post. I don’t know what else to tell you. What I saw in your video shouldn’t work the way you have it set up.
Sort of related, I have had a bug where I’ll add records, using the email of the user who is signed in (viewing as…) and I see the records added to the datasource. However, they are not shown in the editor in a collection along with the records that were added previously.
Then if I close the app and reopen in the editor, I see that the signed in user’s email and some columns from the record I added are blank.
My datasource is a Google Sheet. Submitted a ticket for it. Apart from you viewing as “Anyone” it sounds like a similar bug that I’m seeing.