About 66,600 results
Open links in new tab
  1. excel - VBA - Delete Checkboxes and Unlink from Cells - Stack …

    Oct 12, 2018 · Sub Remove_chkbx_Unlink_Cell() Dim rngCel As Range Dim ChkBx As CheckBox For Each rngCel In Selection With rngCel.MergeArea.Cells If .Resize(1, 1).Address = …

  2. Remove Dynamically Added Controls from Userform - Stack …

    I have an Excel userform with dynamically added checkboxes. I add the checkboxes with code that looks like this: Set chkBox = Me.Controls.Add("Forms.Checkbox.1", "Checkbox" & i) I …

  3. Change excel form checkbox name - Stack Overflow

    Feb 12, 2013 · I am using Excel 2010. I would like to chagne the name of an excel form checkbox I've added. How can I do that, not in VBA?

  4. excel - Macro to delete a checkbox from a certain cell - Stack …

    I am pulling check boxes into a spreadsheet to be used to select certain line items to get a final cost. There are a few unneeded check boxes that get pulled in though, probably 5 or so total. I …

  5. Unselect All CheckBoxes From Excel Workbook with VBA Macro

    I have a workbook with over 100 checkboxes. They are form control checkboxes I would like to un-select them all at once that is set them to false. Sub clearcheck() …

  6. excel - Uncheck box in VBA - Stack Overflow

    Sep 20, 2021 · You can uncheck a single checkbox with activesheet.checkboxes("Check Box 1").value = xlOff. Change the name of the checkbox accordingly.

  7. If checkbox is true then delete whole row and checkbox in vba

    Nov 12, 2021 · If obj.Object.Value = True Then 'Your code to remove the rows ... 'Remove the checkbox itself obj.Delete End If next obj Next you have to make sure that the subsequent …

  8. I want to disable a checkbox when another checkbox is clicked in …

    Apr 24, 2015 · I want to click a check box and have another linked check box be disabled in Excel. When I uncheck that particular check box, then the disabled check box should become …

  9. excel - Delete checkbox from a Specific Cell with VBA - Stack …

    Mar 14, 2022 · It should also remove checkboxes when it finds that same A column to be empty. My VB is correctly creating the checkboxes, but I cannot figure out how to tell the code to …

  10. google apps script - How to auto add/remove checkbox's whether ...

    Apr 27, 2018 · That's it! OLD (SLOW) ANSWER: If you don't mind adding a script to your sheet, I figured out how to use the "new" checkboxes, but only show the boxes when you have a …