I add many checkboxes to excel using the following code:
With ActiveSheet.CheckBoxes.Add(rCell.Left, rCell.Top, rCell.Width, rCell.Height)
.Interior.ColorIndex = xlNone
.Caption = ""
End With
Now I need a code that will analyze all the flags that are present on the sheet and get their value (true or false), as well as the cell in which they are present. How to do it?
Thanks...
source
share