@bigwookie3000,
If the ComboBox is tied to a Form, I would have expected the following on the DefaultSelecteditems property:
Parent.Default
If the ComboBox is not part of a Form, then one method is to apply a LookUp function to get the relevant record, and then return the multi choice column associated to that record (again, on the DefaultSelectedItems property):
LookUp(
YOUR_DATA,
YOUR_ID_COLUMN = varRecorditem.YOUR_ID_COLUMN,
varRecorditem.YOUR_MULTICHOICE_COLUMN
)
Replace varRecord with the variable name you’re using to identify the selected record.
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.