I am trying to set the Default property of a checkbox (ChkMixTot) to a user selection (set via a global variable (VarLockMix)), otherwise I want to checkbox to be blank. I have the following formula in ChkMixTot.Default:
If(VarLockMix<>"",VarLockMix,false)
It appears to be working, but I get a warning saying "expecting a true or flase value. The current value may cause unexpted behavior".
What do I need to do to ensure this works properly and avoid any "unexpected beahavior"?