M Marshall Barton Jul 10, 2004 #2 mrs said: How do you check and uncheck a checkbox with VBA? Click to expand... Me.thecheckbox = True ' use False to uncheck
mrs said: How do you check and uncheck a checkbox with VBA? Click to expand... Me.thecheckbox = True ' use False to uncheck
D Dootje Jul 10, 2004 #3 mrs said: How do you check and uncheck a checkbox with VBA? Thanks Matt Click to expand... Dear Matt, Use <checkboxname>.Value = True to check, and <checkboxname>.Value = False to uncheck. Cheers, Dootje (e-mail address removed)
mrs said: How do you check and uncheck a checkbox with VBA? Thanks Matt Click to expand... Dear Matt, Use <checkboxname>.Value = True to check, and <checkboxname>.Value = False to uncheck. Cheers, Dootje (e-mail address removed)