A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I made an edit to the post to clarify. The main question is how to link a checkbox with a cell to the right using a macro. Linking the cell will auto-generate a TRUE/FALSE response based on the status of the checkbox. I was able to find the following that takes care of the issue in case this will help anyone else:
Sub LinkCheckBoxes()
Dim chk As CheckBox
Dim lCol As Long
lCol = 1 'number of columns to the right for link
For Each chk In ActiveSheet.CheckBoxes
With chk
.LinkedCell = _
.TopLeftCell.Offset(0, lCol).Address
End With
Next chk
End Sub