I am a new user to bubble and have been struggling to set up the data model in two ways:
I have a non-logged in user submitting inputs across various web pages. I have been able to store the data in the database, but it update different rows, instead of different columns in the same row. How do I show the database that the entire flow (across multiple pages) is one user entry to store?
I am using the multiselect dropdown plugin. How do I get these inputs to be stored in a user database? Specifically, I want each input to be stored in a separate field/column.
Seems that the logic you have setup is creating new entries and not updating the only one you want updated after it was originally created.
Whenever you need an update perform a search for that unique entry and update it. You can store its’s unique id when it is first created and later when you need to find it … use it’s unique id to find it and the you can update that single entry.