S Spencer Hutton Jan 28, 2005 #1 i have 100 option buttons on a sheet, is there a loop that can set all of there values to False? i can't seem to get the syntax.
i have 100 option buttons on a sheet, is there a loop that can set all of there values to False? i can't seem to get the syntax.
N Neil Jan 28, 2005 #2 Spencer, try this For i = 1 To 100 ActiveSheet.DrawingObjects("option button " & i) = False Next i Neil
Spencer, try this For i = 1 To 100 ActiveSheet.DrawingObjects("option button " & i) = False Next i Neil