Ok, it looks like the problem was that, after a series of copy/pasting the other day, I had 5 or 6 checkboxes stacked on top of each other in each open spot and Excel was just confused about which one I was trying to reference. The ones underneath were probably turning on and off as well. After deleting all the checkboxes, then adding them back in and setting everything up again, I finally solved the problem by enabling macros and putting in the following code:
Sub TheResetMacro()
With ActiveSheet
.Shapes("SundayLunchBox").ControlFormat.Value = xlOn
.Shapes("MondayLunchBox").ControlFormat.Value = xlOn
.Shapes("TuesdayLunchBox").ControlFormat.Value = xlOn
.Shapes("WednesdayLunchBox").ControlFormat.Value = xlOn
.Shapes("ThursdayLunchBox").ControlFormat.Value = xlOn
.Shapes("FridayLunchBox").ControlFormat.Value = xlOn
.Shapes("SaturdayNoonBox").ControlFormat.Value = xlOn
.Shapes("SundayNoonBox").ControlFormat.Value = xlOn
.Shapes("MondayNoonBox").ControlFormat.Value = xlOn
.Shapes("TuesdayNoonBox").ControlFormat.Value = xlOn
.Shapes("WednesdayNoonBox").ControlFormat.Value = xlOn
.Shapes("ThursdayNoonBox").ControlFormat.Value = xlOn
.Shapes("FridayNoonBox").ControlFormat.Value = xlOn
.Shapes("SaturdayNoonBox").ControlFormat.Value = xlOn
Range("B7").Select
ActiveCell.FormulaR1C1 = "12:30:00 AM"
Range("C7").Select
ActiveCell.FormulaR1C1 = "12:30:00 AM"
Range("D7").Select
ActiveCell.FormulaR1C1 = "12:30:00 AM"
Range("E7").Select
ActiveCell.FormulaR1C1 = "12:30:00 AM"
Range("F7").Select
ActiveCell.FormulaR1C1 = "12:30:00 AM"
Range("G7").Select
ActiveCell.FormulaR1C1 = "12:30:00 AM"
Range("H7").Select
ActiveCell.FormulaR1C1 = "12:30:00 AM"
Range("B2").Select
End With
End Sub
The linked sheet here is from "before" I made those changes.
Bookmarks