Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a drop down list using the validate list option.
When I select a product from the dro down list it excel display my choices in a cell using a simple VBA script. But there is one product in the list that I don't want to be displayed in that cell. How do I make an exeption for that cell? This is the script I am using now: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$I$16" Then If Target < "" Then Cells(17, 7) = Cells(17, 7) & "" & Target Selection.Offset(0, 0).ClearContents End If End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Conditional Drop Down List | Excel Discussion (Misc queries) | |||
Populating worksheet via a drop down list ! | Excel Worksheet Functions | |||
changing value of a cell by selecting an item from a drop down list | Excel Worksheet Functions | |||
Drop Down List | Excel Worksheet Functions | |||
Drop List Referencing | Excel Worksheet Functions |