Hello bvchrisb,
Welcome to the Forum!
The macro shown here will set only one check box at a time based on the input in cell "A1". If there is no match then all the check boxes are cleared. This type of mutual exclusion can be achieved more easily using Option Buttons as this is part of their design. The macro has already been added to the attached workbook.
Private Sub Worksheet_Change(ByVal Target As Range)
Dim ChkBox As Excel.CheckBox
If Target.Cells.Count = 1 And Target.Address = "$A$1" Then
'Clear all check boxes
For Each ChkBox In CheckBoxes
ChkBox.Value = xlOff
Next ChkBox
'Add check marks based on input
Select Case LCase(Target.Text)
Case "new"
CheckBoxes(1).Value = xlOn
Case "existing"
CheckBoxes(2).Value = xlOn
Case "archived"
CheckBoxes(3).Value = xlOn
End Select
End If
End Sub
Bookmarks