Hi All!
I have a combobox that is set to a database table and the layout of the combobox is double: primary text (ID column) and secondary text (description column)
I have a function on the screen to enter some data and based on filtering in the database pre-select the relevant item in the combobox with the ability to change it if needed. My issue is the default selected item is this:
Trim(Filter('TABLE', COLUMN = txtPO_1.Text && COLUMN2 = DataCardValue11_1.Text && COLUMN3 <> "Y").COLUMNID)
It is working, but the combobox is only displaying the ID in the drop down and not the full drop down item that includes the description if I just did the drop down and selected it. The ID is correct. How do I set the default selected item to also include the combobox secondary text with it so people know what the ID means when it comes up? Thanks!
Update: Its not relevant to how i'm doing the defaultselecteditem. If i just pick an item from the drop down even with the secondary text in there to help me pick when i select one it just gives/shows the ID in the drop down not the full string with description. Is this even possible?