Hi everyone,
I want to set the source column for a combo box with SharePoint IDs. However, when I open the Primary text list via the Data pane, I notice that SharePoint ID is not a selectable option:

As a workaround, I duplicated the column in a collection and set the data source for the combo box to the collection:
ClearCollect(
collection_name,
AddColumns(
sharepoint_list_name,
"ID_Text",
ID
)
);
However, the column (ID_Text) is still not visible in the Primary text list.
Could anyone help?