Default values in checkbox

I’ve created a checkbox with values A and B and in the Object pane Default value written “A”;“B” but only the last value is default in the checkbox. What am I doing wrong?

Subject: Default values in checkbox

Try using the list operator ‘:’ instead of ‘;’ eg “A”:“B” - this will default both ‘A’ and ‘B’.

Subject: RE: Default values in checkbox

Tnx Maurice it worked just fine!

Subject: Default values in checkbox

I could be wrong but I think it is your syntax. I think the way the code is reading is saying “If A or else B”. So each time if A is empty it will select B. Have you tried using a : or |

I am not sure if that is it, but I guess it is worth a try.