Jici
8
Not totally true.
First, in this case, we store question|response, not just response.
Second, Bubble can have the same value only if you use a text string and not a list.
For example, instead of adding item to the list using :plus item, you just have a field of text type (not a list of text) and add the item using, for example, Dynamic state’s value, new value (you manually add a comma). You can split it using :split by and at this moment, you will have a list of text that contain “duplicated” value.
For example: consider we have a list of 1,2,3,4,5:
list of text state:plus item “5” (will not work)
text state,5:split by will work and return 1,2,3,4,5,5