Hi,
I'm trying to replace my old drop-down list by combo box because it can show more columns data. However, I noticed some unexpected behavior of my combo box but not sure the reason. Some of the filtered results can be missing from the combo box list, but it is not always happening. please see the following screenshots:
Missing results behavior(combo box list has some items missing):
Filtered results of drop-downs:

Filtered results of combo box (objectid = 1464 is gone):

Normal behavior (the drop-down list gives the same results as the combo box):


Here is my code for them:
Dropdown:
On select:
SortByColumns(Distinct(Filter('[dbo].[GENERAL_INSPECTION]',slip_id = cb_slip.Selected.slip_id),objectid),"Result",Ascending)
Combo box :
On select:
Filter(AddColumns('[dbo].[GENERAL_INSPECTION]',"objectid_t",Text(objectid),"ins_date",Text(inspection_date)),slip_id = cb_slip.Selected.slip_id)

Do you have any suggestions? Many thanks!