Hi all,
I have 6 dropdown boxes that should automatically update a Combobox, where for the dropdown boxes I have 0,1 and NA the same for the combobox. For the dropdown boxes, i want that if 2 or more are answered with 0 the combobox is automatically updated to be 0, otherwise 1 and I also want the default to be NA.
Thus far I have tried doing a variable and in the default of the combobox doing the following if statement:
If(
CountIf(questionValuesList, "0") >= 2,
"0",
If(
CountIf(questionValuesList, "0") = 0,
"NA",
"1"
)
)
however I keep getting an error where its stating Expected Record value and I am truly not sure where I am going wrong. Any assistance will be truly appreciated.