Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Hello,
I am trying to use the worksheet_change with cases, but seem to be having problems. I would like for various cases to run when the data in B8 changes. I have 10 difference cases. Any help would be appreciated. Thank you in advance. Mike |
#2
![]() |
|||
|
|||
![]()
Hi
you may post your current code as describe what exact probelms you have -- Regards Frank Kabel Frankfurt, Germany Mike R. wrote: Hello, I am trying to use the worksheet_change with cases, but seem to be having problems. I would like for various cases to run when the data in B8 changes. I have 10 difference cases. Any help would be appreciated. Thank you in advance. Mike |
#3
![]() |
|||
|
|||
![]()
Private Sub Worksheet_Change(ByVal Target As Range)
With Target If .Address = "$B$8" Then Select Case .Value Case "value 1": 'action 1 Case "value 2": 'action 2 'etc. End Select End If End With End Sub -- HTH ------- Bob Phillips "Mike R." wrote in message ... Hello, I am trying to use the worksheet_change with cases, but seem to be having problems. I would like for various cases to run when the data in B8 changes. I have 10 difference cases. Any help would be appreciated. Thank you in advance. Mike |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
change operating cells dynamically according to the value of a fixed cell | Excel Worksheet Functions |