I have this worksheet and it has a check box on it.....well its supposed to have a check box on it but i want to do a check to make sure that the check box is on the sheet.

Check box name is "Check Box 1".

When i try to use the following code to test to see if the check box is on the sheet i get a runtime error at "Set Junk3" line when THERE IS NO check box on the sheet.

I thought the set function would make junk3 equal to "nothing" if there was no check box but that does not seem to work.

Set ws = Workbooks(fl_macro).Worksheets("Sheet1")
Set junk3 = ws.CheckBoxes("Check Box 1")
ANythoughts on how to test if a certain check box is ona certain sheet?