Ive been having a heck of a time trying to get a simple check box code to work. Essentially I'm trying to use a checkbox to create another sheet and move certain cell information to specific cells in the new sheet. I'm starting small just to get the add sheet code to work and then build on that but nothing is working. Here's what I've been trying:
So far, I can't get the add sheet command to work on this particular spreadsheet. I copied a table from another sheet I didn't create to a new one in the event that there were settings on the original sheet causing errors (protected portions?).Sub CheckBoxFromHell() If Worksheets("Schedule").CheckBoxes("CheckBox1").Value = True Then Sheets.Add.Name = "Transformer" End If End Sub