I have a Gallery that I want users to be able to search by ID. I created a collection to get the ID and store it in a combo box plus added the value "All". With the function I have, I am only seeing "All" in the Value and the ID in Result within the collection. Therefore, "All" is the only value displaying in the combo box. I have tried using Value in place of Result to see if it will put the ID in the Value column, as well. How can I get the ID in the combo box for search purposes? Thank you in advance for your assistance.
ClearCollect(
colCID,
{Value:"All"},
{Result:('AIMS Q & A'.ID)}
);