How can I take my list and turn it into a drop down menu?

So Basically I have a database called Device Infos, It has data of phones. The fields in the data type are Device Name, Device Model, Device color (List of texts), Device Storage (List of Texts). I want the user to have a drop down where they can select their devices color and storage. I am trying to create a dropdown out of the storage but it shows as 256,123,455 instead of:

256
123
455

how can I work around this?

Sounds like your text list is being fed in as a single item text field. If the field on your device datatype is definitely a list of texts (not a single field containing a comma delimited list), then you should be able to just feed that directly into the dropdown.

Either the field isn’t set to be a list of texts, or you are modifying the structure somewhere before it hits the dropdown.

If you really want to keep the single text field, you could just use a split by(,) operator to create the list client side.

I do have the storage as a list of texts, Ill show you what im doing with the drop down.



Your Option Caption is Wrong.

Currently you’re using a List of Text as your Option Caption (the same List of text as your Choices Source - which measn each option will display as the full list of Text).

In your case the Option Caption should just be ‘Current Option’

I’ll give that a try and let you know!

You can use format as text and in delimiter you need to add “Enter”
Below are some screenshots you can check:

let me know if it helps you. or you need something else

Thank you guys! I got it figured out! Appreciate it :slight_smile:

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.