Hi,
I am trying to create a drop down that has multiple columns within it.
The idea is so that when they open the drop down it will have more than one piece of information on the line so they can pick the correct product to pick, The dropdown will be populated from a sharepoint list.
Below is what ive tried already, but this doesnt seem to work.
OnStart -
ClearCollect(MyCollection, MySharePointList);
OnVisible -
ClearCollect(DisplayCollection,AddColumns(MyCollection,TempColumn,ThisRecord.Code & " | " & ThisRecord.IdentificationNo & " | " & ThisRecord.Qty & " | " & ThisRecord.BinName))
Item -
DisplayCollection
Value -
TempColumn
This was done within a regular drop down. Using the combo box, by default it lets me use two columns but i need to use 4 columns