Hi all,
I have a combobox that I am using to select AD usernames to then patch to a sharepoint list.
The Items property is set to Distinct(Office365Users.SearchUser({searchTerm:ComboBox2_2.SearchText}).DisplayName,DisplayName)
The on change property is set to Patch('SPLIST',ThisItem,{Item1:ComboBox2_2.Selected.Result})
The above are working fine but on the default property I want the combobox to return the value that is written in the SP list. I've done a lookup but I think there might be an issue with the combobox expecting a table value?
Any help is welcome currently the default property has the following in this is working in a label which makes me think that the issue is unique to combobox:
LookUp('SPLIST',Text(Date,ShortDate)=Text(DatePickerCathedral_2.SelectedDate,ShortDate),Item1)
thanks in advance