Combination of IF function with Data Validation

yichuansancun

Board Regular
Joined
Feb 7, 2011
Messages
123
Hello -

In the cell that I have created a drop down list, is it possible to add an IF condition in the same cell?

For example, A1 is the cell that contains the drop down list and the drop down list came from range B1:B10.

If A1="Cat", the cell will give me the drop down, otherwise, display "n/a".

Thanks in advance!

Perri
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
As I understand youi want to check if the word "Cat is in drop down list otherwise N/A. Why not choose from drop down list itself...
 
Upvote 0
No, I want to achieve A1 being dependent on another cell, say A2.

So if A2="Cat", A1 will be a drop down list, otherwise, A1 should display "n/a".

Does it make sense?

Thanks,
Perri
 
Upvote 0
Try this...

Code:
Sub drop()
For Each c In Range("B20:B25")
    If c.Text = "Cat" Then
            With c.Offset(0, 1)
            .Validation.Delete
            With .Validation
                .Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
                xlBetween, Formula1:="=$B$2:$B$10" ' Change this range with your data of your drop down liist
            End With
        End With
    End If
Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,608
Messages
6,179,872
Members
452,949
Latest member
Dupuhini

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