Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I would like to know how to reset a check box (It is from the forms toolbar). At the moment; the checkbox calls a macro: Sub Checkbox4_Click() WFState = 1 'ActiveSheet.checkbox4.Value = False End Sub The ActiveSheet.checkbox4.Value does not work for some reason!! -------------------- I have a "Ok" pushbutton, when then does the following Sub AddNextActions_Click() Dim sheetName As String If WFState = 1 Then sheetName = "Waiting-For" WFState = 0 Else sheetName = "Next-Actions" End If NewRow = Worksheets(sheetName).Range("B65536").End(xlUp).Ro w + 1 Worksheets(sheetName).Cells(NewRow, 2).Value = Worksheets("Dashboard").Range("L13").Value Worksheets("Dashboard").Range("L13").Value = "" End Sub ------------------------- Now ideally I would not want to even have the "Checkbox4_Click()" routine, but would rather like to check the status in the If WFState = 1 part here. Moreover, I also want to reset the Checkbox as soon as I have decided which sheet to update. Cheers karthik |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
reset ALL checkboxes (created with control toolbar) with the click of ONE BUTTON | Excel Programming | |||
Using Checkboxes | Excel Programming | |||
CheckBoxes: How to reset | Excel Discussion (Misc queries) | |||
How to reset checkboxes from control tool box? | Excel Programming | |||
Reset Checkboxes from Control Tool Box | Excel Programming |