Hello
I have a problem with these combo box. I have a Datacard that I have embedded a combox box where it selects users
When I go use to the Datacard update property I put the following
CmbAttendees.Selecteditems.DisplayName
What happens is that errors because I cannot add multiple names
Solved! Go to Solution.
What type of field are you saving the data to? If you are saving the data to a text column then you would need to concat the values.
Example ConCat(CmbAttendees.Selecteditems, DisplayName, "; ")
What type of field are you saving the data to? If you are saving the data to a text column then you would need to concat the values.
Example ConCat(CmbAttendees.Selecteditems, DisplayName, "; ")