Hi all,
within my powerapp I have a gallery with a multi select combobox.
While having a form for new items this works perfectly: the values are being added into a column of my SQL table divided by a ",".
However I'm still struggling to display the values again within an edit form.
How can I display my values from the specific column (which are divided by a comma) as default values within my combobox?
KR,
Sebastian
Solved! Go to Solution.
Hi @sbossler_079 ,
You need the Split function, but you need the current record (it will only do text, not a table) as it is tuning your text into a table.
Split(
ThisItem.YourSQLColumnName,
","
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @sbossler_079 ,
You need the Split function, but you need the current record (it will only do text, not a table) as it is tuning your text into a table.
Split(
ThisItem.YourSQLColumnName,
","
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Thanks @sbossler_079 ,
Please Accept as Solution so others with the same question can find it more easily. It also closes the item.
User | Count |
---|---|
126 | |
87 | |
84 | |
75 | |
69 |
User | Count |
---|---|
214 | |
178 | |
139 | |
105 | |
83 |