I have changed the code, it now creates the checkboxes successfully, just it doesn't put them in correct place:
All the current checkboxes are within Column H, I just need a way to determine what is the lowest cell within that column that has a checkbox in and then from there, add a checkbox to the cell below. Again, any help would be appreciatedPrivate Sub Update_Click() Dim rng As Range Dim LowestCheck As CheckBox Dim cb As CheckBox Dim Exists As Boolean For Each ws In ActiveWorkbook.Worksheets For Each cb In ThisWorkbook.Worksheets("Summary").CheckBoxes If cb.Name = ws.Name Then Exists = True End If Next If Exists = False Then With ThisWorkbook.Worksheets("Summary").CheckBoxes.Add(Selection.Left, Selection.Top, Selection.Width, Selection.Height) .Name = ws.Name .Caption = ws.Name End With End If Next End Sub![]()




Reply With Quote
