Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a column of cells and each cell has data validation making the
user pick Yes or No from the drop down list. I would like my vba code to run after *after* the user makes a choice of Yes or No. For example, the user picks Yes, the cell the next column changes the Pattern to light grey so it looks like the cell is greyed out. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You could use a worksheet_Change event, but it sounds like you could use
Format|Conditional formatting for this. Say A2:Axx contains your yes/no cells. Select B2:Bxx and use Format|Conditional formatting Formula is: =$A2="Yes" and give it a nice format wrote: I have a column of cells and each cell has data validation making the user pick Yes or No from the drop down list. I would like my vba code to run after *after* the user makes a choice of Yes or No. For example, the user picks Yes, the cell the next column changes the Pattern to light grey so it looks like the cell is greyed out. -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
SWEET ! you Rock D.P. Thank you very much.
Dave Peterson wrote: You could use a worksheet_Change event, but it sounds like you could use Format|Conditional formatting for this. Say A2:Axx contains your yes/no cells. Select B2:Bxx and use Format|Conditional formatting Formula is: =$A2="Yes" and give it a nice format wrote: I have a column of cells and each cell has data validation making the user pick Yes or No from the drop down list. I would like my vba code to run after *after* the user makes a choice of Yes or No. For example, the user picks Yes, the cell the next column changes the Pattern to light grey so it looks like the cell is greyed out. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
produce list automatically from choice of drop down list | Excel Discussion (Misc queries) | |||
Drop Down List choice selecting another drop down list | Excel Worksheet Functions | |||
drop-down list changing according to choice made | Excel Programming | |||
drop-down list changing according to choice made | Excel Worksheet Functions | |||
How do i create a multiple choice drop down list | Charts and Charting in Excel |