@sebastianslz
Yes, you can always do that. I thought you wanted to have a ListBox show the values that were selected.
It is actually kind of important that they do show what is selected as you will otherwise run into complexity if writing the data back. Meaning, if someone edits a record that has a listbox of data shown and yet they make no changes to that listbox selection, then by default, if you write back the listbox choices...well, there will then be none, and your data will be lost.
If you just want to display the values, then it depends on your column type. I will assume it is a choice column and that you have multiple selections enabled on it.
In that case, a label or textinput with a formula such as : Concat(yourColumn, Value & ", ")
Again, depending on your scenario, but that would show the choices.