Hi @anandm08 ,
Thank you so much for the help. From the screenshots I have a question that I'm still looking for, hope you can help me. Below is the detailed explanation.
I have a choice column created in dataverse with "recommended" which created a choice set that I will sync with my choice column. Also, this is a multi select option.
I did convert this multi select choice column to checkboxes as per the requirement. Below is the process I implemented.
Removed the combobox. Added a gallery inside the datacard and inserted a checkbox in it.
Item property of the gallery is Choices('Choose a Device') and updated the text value of the checkbox to Thisitem.Value
For checkbox
OnCheck : Collect(CollDevices,ThisItem.Value)
OnUncheck : RemoveIf(CollDevices,Value=ThisItem.Value)
Default property of the checkbox : ThisItem.Value in CollDevices.Value
Updated the Update property of the datacard with the collection : CollDevices
Everything went well until the submission of the form. But when I try to view the submitted item or look at the collection after selection I see the Question mark instead of the value of what I checked.
OnVisible property of the form I had the code as : ClearCollect(CollDevices,LookUp(TableName, ID = RefID,ChoiceColumnName))
MultiChoiceSelection is the reference link I've used to achieve converting the choices to checkboxes but the link is based on sharepoint.
Not sure what I've missed. Can you please help.
Thank you so much !