Selection of dropdown list value with a checkbox

iasiddiqui

New Member
Joined
May 21, 2014
Messages
22
I need help trying to implement a check box to automatically select a dropdown list value when checked, but when it is unchecked i would like to be able to select the value from the dropdown list. So, I have:

ABC
leftrightleftrightleftright
upper??????
lower??????

<tbody>
</tbody>

so the cells with "?" have a dropdown list in them, the values for all the dropdown lists are the same (ie "present", "variable", "absent"). I want to place a check box on the side of this table that when selected, it will automatically select "present" in all the dropdown boxes, but if I want to manually change one of them it still allows me to - HOW DO I DO THIS?
 
ill try that, lets see if it works....another question for you - the checkbox works great now, this is the code i put in

Sub CheckBox22_Click()
Dim Rng As Range, Dn As Range
Set Rng = Range("B4:C5, E4:F5, H4:I5")
For Each Dn In Rng
If Dn.SpecialCells(xlCellTypeAllValidation).Count > 0 Then
Dn.Value = "present and repeatable"
End If
Next Dn
End Sub

how do i get the cells to go blank again if i uncheck the box? would it be an "if" statement in the code?
 
Upvote 0

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
This should do the job:-
I don't really see why you need to check that the range is full of Validation cells, because you would already have set them.
Code:
Private Sub CheckBox1_Click()
If CheckBox1 = True Then
    Range("B4:C5, E4:F5, H4:I5").Value = "Present & Presentable"
Else
    Range("B4:C5, E4:F5, H4:I5").Value = vbNullString
End If
End Sub
 
Upvote 0
doesnt seem to work at all when i put that code in, the box checks and unchecks but values dont populate in the validation cells - is there anyway to put the "if...then" statment into the original code?
 
Upvote 0
this works well, just not sure how to incorporate it into my worksheet - any help would be greatly appreciated (as you maybe able to tell, im a novice in excel - took a training course but that's it. also, ive never coded in my life so learning as i go).
 
Upvote 0
If my example code worked for you, then your sheet should also work, check the codes and sheets data for dis-similarities.
 
Upvote 0
Good shout!!!
Try this forms code:-
Nb:- Change Checkbox name to suit !!

Code:
Sub CheckBox10_Click()
If ActiveSheet.Shapes(Application.Caller).OLEFormat.Object.Value > 0 Then
    Range("B4:C5, E4:F5, H4:I5").Value = "Present & Presentable"
Else
    Range("B4:C5, E4:F5, H4:I5").Value = vbNullString
End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,921
Messages
6,122,280
Members
449,075
Latest member
staticfluids

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