On unchecking a checkbox in a gallery (which is inside a form), i need to reset a combobox (SharePoint single choice field) to a blank value. I have set the RESET property of the combobox to TRUE and added the below code while unchecking the checkbox :
Set(ResetDataCardValue1,true);Set(myDataCardValue1, {Value: Blank()});
And i have set the DEFAULTSELECTEDITEMS to If(ResetDataCardValue1,{Value: myDataCardValue1}, Parent.Default). its not working.
I also tried If(ResetDataCardValue1,{Value: ""}, Parent.Default), If(ResetDataCardValue1,{Value: [""]}, Parent.Default) still not working.
Please suggest solution