Can I create multiple data validation rules in a single cell?

MattinglyC

New Member
Joined
May 17, 2017
Messages
1
Help =)
I am wondering if it is possible (and if so, how) to apply two validation rules to a single cell. For example:

Column A has a data validation to select from a drop down list (Yes, No, N/A).
Column B has a data validation to select from a drop down list (Steroids, NSAIDS, Other).

What I want is to set column B to have a second validation rule =IF(A1="Yes",true,false), so that column B cannot provide the dropdown list/be completed if Column A is No or N/A.

Right now I can set a validation for column b to select from a list, but I don't know how to tell column B to only provide the list if Column A = Yes.

Thanks for the help!!
CMatt
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Hi CMatt, welcome to the board.

Give one of these change event macros a try, copy to the sheet module that has the drop down in column A.
Use ONLY ONE of the change event code in the module at a time, both won't work at all.

The first code is if only A1 has the drop down with the Steroids, NSAIDS, Other choices.
The second code is if 'many' A column cells have a drop down with the Steroids, NSAIDS, Other choices.

You can un-comment the spare MyList()'s to add additional items for the B cell/column drop downs.
As example change from this >> 'MyList(3) = "?" to this >> MyList(3) = "Spinach"
and Spinach will become a choice in the B drop down.

Howard

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
'// For the cells A1 and B1 only
If Intersect(Target, Range("$A$1")) Is Nothing Or Target.Cells.Count > 1 Then Exit Sub


Dim MyList(5) As String
MyList(0) = "Steroids"
MyList(1) = "NSAIDS"
MyList(2) = "Other"
'MyList(3) = "?"
'MyList(4) = "?"
'MyList(5) = "?"


Select Case Target.Value


  Case Is = "Yes"


       With Range("B1").Validation
           .Delete
           .Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, _
            Operator:=xlBetween, Formula1:=Join(MyList, ",")
            [B1].Select
      End With
      
  Case Else
  
      With Range("B1").Validation
           .Delete
           [B1].ClearContents
      End With
      
End Select
      
End Sub

'///*************************************************************************\\\'

Option Explicit


Private Sub Worksheet_Change(ByVal Target As Range)
'// For the column A
If Intersect(Target, Range("A:A")) Is Nothing Or Target.Cells.Count > 1 Then Exit Sub


Dim MyList(5) As String
MyList(0) = "Steroids"
MyList(1) = "NSAIDS"
MyList(2) = "Other"
'MyList(3) = "?"
'MyList(4) = "?"
'MyList(5) = "?"


Select Case Target.Value
'MsgBox Target.Value


  Case Is = "Yes"


       With Target.Offset(, 1).Validation
           .Delete
           .Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, _
            Operator:=xlBetween, Formula1:=Join(MyList, ",")
            Target.Offset(, 1).Select
      End With
      
  Case Else
  
      With Range("B1").Validation
           .Delete
           Target.Offset(, 1).ClearContents
      End With
      
End Select
      
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,110
Messages
6,128,894
Members
449,477
Latest member
panjongshing

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