Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim c As Range
If Target.Cells.Count > 1 Then Exit Sub
Set c = Intersect(Range("C14:C28"), Target)
If c Is Nothing Then Exit Sub
Cells(Target.Row, 1).Resize(, 5) = ""
Target = "X"
End Sub
I had seen this on a previous post in response to a concern that a woman had on the check boxes. Here concerns mirrored my own, only problem is my situation is slightly more complex. I need the cells for the following ranges to function like a check box when active; would like them to toggle as well, if possible. I am knew to this so, please be easy on me. The following ranges are what I need;
"C14:C28" & "C31:C32"
"E14:E28" & "E31:E32"
"G14:G28" & "G31:G32" &
"I14:I28" & "I31:I32".
I know this is a tall order, but it is just the beginning of my troubles. I also need to automate responses in relation to these 60-68 check box function style cells, based on the status of the cells. Beyond that, it should open a pull down menu & list a range of automated responses to choose from. If you can help me w/ everything, great! The first issues are my most immediate concern. . . thx in advance for any help.
Dim c As Range
If Target.Cells.Count > 1 Then Exit Sub
Set c = Intersect(Range("C14:C28"), Target)
If c Is Nothing Then Exit Sub
Cells(Target.Row, 1).Resize(, 5) = ""
Target = "X"
End Sub
I had seen this on a previous post in response to a concern that a woman had on the check boxes. Here concerns mirrored my own, only problem is my situation is slightly more complex. I need the cells for the following ranges to function like a check box when active; would like them to toggle as well, if possible. I am knew to this so, please be easy on me. The following ranges are what I need;
"C14:C28" & "C31:C32"
"E14:E28" & "E31:E32"
"G14:G28" & "G31:G32" &
"I14:I28" & "I31:I32".
I know this is a tall order, but it is just the beginning of my troubles. I also need to automate responses in relation to these 60-68 check box function style cells, based on the status of the cells. Beyond that, it should open a pull down menu & list a range of automated responses to choose from. If you can help me w/ everything, great! The first issues are my most immediate concern. . . thx in advance for any help.