In the Edit Screen I have a form having a combobox.
My need is that 2 values(UserName1, UserName2) must be default selected.
Default User Names are set on Edit Screen On Visible property.
Set(DefaultUserNames, "Ankit,Dinesh")
Combobox: code in Default Selected Items:
Split(DefaultUserNames, ",")
The above code didn't worked, So I tried another following code:
ShowColumns(Split(DefaultUserNames, ","), "Result")
Above code also didn't worked.
Need help 🙏🙏🙏