Hi @sbonera ,
Could you tell me
1)whether this choice column allows multiple choice?
2)whether you use drop down or combo box?
Please set like this:
The textinput's OnChange:
If(Value(DataCardValue15.Text)> =5 ,Set(var,"Yes"),Set(var,"No"))
1)If the choice column not allow multiple choice and you use drop down:
set the datacard's Default:
var
set the daracard's Update:
dropdownname.Selected
//please replace with this drop down's name
set the drop down's Items:
Choices(listname.fieldname)
set the drop down's Default:
Parent.Default
The textinput's OnChange:
If(Value(DataCardValue15.Text)> =5 ,Set(var,"Yes"),Set(var,"No"))
2)If the choice column not allow multiple choice and you use combo box:
set the datacard's Default:
{Value:var}
set the daracard's Update:
comboboxname.Selected
//please replace with this combo box's name
set the combo box's Items:
Choices(listname.fieldname)
set the combo box's DefaultSelectedItems:
Parent.Default
3)If the choice column allow multiple choice and you use combo box:
set the datacard's Default:
Table({Value:var})
set the daracard's Update:
comboboxname.SelectedItems
//please replace with this combo box's name
set the combo box's Items:
Choices(listname.fieldname)
set the combo box's DefaultSelectedItems:
Parent.Default
Best regards,