Please help with coding.
Have form called EditSupplementalForm1
Need to patch following fields into new record:
Title, Narrative, Submitter, School
Am able to patch first 3 columns with following:
Patch('SRO Test List', Defaults('SRO Test List'),
{Title: valSupReportNumber.Text},
{Narrative: valSupNarrative.Text},
{Submitter: valSupSubmitter.Text}
)
Cannot figure out how to patch School column. School column is a multichoice lookup field populated from SP list name School.
Form combobox field to patch School column is named cboSupSchool.
Please help!
facepalm