Hello All!
I've got a bunch of checkboxes on a sheet and, in the same cell of another sheet, I'd like to record when any of them are checked.
I understand I should use something like this to get the checkboxes:
I've seen a way to put the day on an offset cell of the same sheet:
This seems pretty simple, but I'm not sure how to iterate through them and place it in the corresponding cell on the other sheet and need some help
I've got a bunch of checkboxes on a sheet and, in the same cell of another sheet, I'd like to record when any of them are checked.
I understand I should use something like this to get the checkboxes:
VBA Code:
Set cb = ActiveSheet.CheckBoxes(Application.Caller)
If cb.Value = xlOn Then
...
I've seen a way to put the day on an offset cell of the same sheet:
Code:
With xChk.TopLeftCell.Offset(, 50)
This seems pretty simple, but I'm not sure how to iterate through them and place it in the corresponding cell on the other sheet and need some help