The Final Pieces to the Puzzle, anyone?

CBRadio

New Member
Joined
Aug 24, 2014
Messages
4
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.:confused:
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Welcome to MrExcel.

See if you can adapt this:

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Target.Count > 1 Then Exit Sub
    If Application.Intersect(Target, Range("C14:C28,C31:C32,E14:E28,E31:E32,G14:G28,G31:G32,I14:I28,I31:I32")) Is Nothing Then Exit Sub
    If IsEmpty(Target) Then
        Target.Formula = "=CHAR(252)"
        Target.Value = Target.Value
        With Target.Font
            .Name = "Wingdings"
            .FontStyle = "Bold"
            .Size = 8
        End With
        Target.Borders.LineStyle = xlContinuous
    Else
        Target.ClearContents
    End If
End Sub
 
Upvote 0
welcome to mrexcel.

See if you can adapt this:

Code:
private sub worksheet_selectionchange(byval target as range)
    if target.count > 1 then exit sub
    if application.intersect(target, range("c14:c28,c31:c32,e14:e28,e31:e32,g14:g28,g31:g32,i14:i28,i31:i32")) is nothing then exit sub
    if isempty(target) then
        target.formula = "=char(252)"
        target.value = target.value
        with target.font
            .name = "wingdings"
            .fontstyle = "bold"
            .size = 8
        end with
        target.borders.linestyle = xlcontinuous
    else
        target.clearcontents
    end if
end sub

this worked wonderfully! Thank you very much!
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,549
Members
449,089
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top