Type Mismatch

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

have a Macro to OpenForm with condition: [checkbox] = 1

returning a "Type Mismatch" error message.....the checkbox is inside an
OptionGroup

have tried alot of different values - but can't seem to figure out why this
doesn't work
 
NetworkTrade,

The macro Condition needs to refer to the value of the Option Group, not
the value of the Checkbox. Should be like this...
[NameOfOptionGroup]=1
.... which will be true when the checkbox, whose Option Value is 1,
within the option group, is ticked.
 
Back
Top