Advertisement
murp

Remove all checkboxes in an Excel spreadsheet

Jan 31st, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.16 KB | None | 0 0
  1. ' Remove all check boxes on an Excel page
  2. Sub RemoveCheckboxes()
  3. On Error Resume Next
  4. ActiveSheet.CheckBoxes.Delete
  5. Selection.FormatConditions.Delete
  6. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement