Displaying input's values in a table

Hey guys, I am still pretty new to bubble and I’m guessing this is an easy question to answer, but I have been struggling with it for 2 days already.
I have a popup where I want my users to enter certain values. I have created the inputs in the popup and all the values from the relevant inputs are being stored in the corresponding field in my database. Each input can have multiple entries and I want to display each entry in a table. I have created the table with each field that corresponds to my database field. The problem now is that the table displays all of the entries in the database and I need it to display only the values from the user’s input in the current popup.
I’m not sure if I am explaining everything properly, so that’s why if you need more information tell me.
Thank you in advance!

Hey there,

Sure thing, so, IDK what the data is but here are 2 scenarios.

1, its the first time this User is entering their FavouriteFlavours. In this case theres no data stored on the user profile, I would create hidden repeating group to be temporarily storing the items the users enters, then using that as the datasource for the table. You can then let the user remove a flavour etc.

2, the user already has a list of FavouriteFlavours, in this case there are a few ways you can go about it, but when you display the popup for example you could display the users current FavouriteFlavours list in the hidden RG, then the user can add or remove flavours. Then when they hit save you Set the users list of Flavours.

Does that make sense? Main thing to focus on is temporarily storing the data.