I have a combo box with the following command in Items which displays nicely
ForAll( audit,
{CID: ID,
cboDisplay: ID & " - " & ContractPeriod.Value & ": " & Text(DateValue('ContractPeriod:BegDate'.Value,"en-US"),ShortDate) & " - " & Text(DateValue('ContractPeriod:EndDate'.Value,"en-US"),ShortDate)})
On Update, I'd like to save the ID. I've tried cboAID.Selected.CID and I'm getting an error that it's expecting a record. So I remove CID and enter cboAID.Selected, I don't get the error but my ID doesn't save.
Any idea on how to save the ID?
ruth