2
我正在創建一個宏來清除表單中的單元格和所有複選框,但它僅清除第一個組框中的複選框(並且保留所有其他複選框打勾)。我的代碼:清除所有複選框
Sub clearcheck()
ActiveSheet.CheckBoxes.Value = False
Range("D4:E4").Select
Selection.ClearContents
ActiveSheet.Shapes.Range(Array("Label 61")).Select
Range("H4:I4").Select
Selection.ClearContents
Range("M4:N4").Select
Selection.ClearContents
End Sub
誰能幫我用我的代碼?