Hi Members
I've been trying to figure out a way to call two macros based on a condition given by the same cell. So for example I have
Cell C9 = Bloqueo (for Spanish)
and through Macros I'm changing that to English so it will be like
Cell C9 = Block
so when C9 is Bloqueo I need the following code
But when C9 is Block I need the following code
So it's possible to trigger different macros based on how the statement of the same cell change.
Thanks in advance for your assistance.
I've been trying to figure out a way to call two macros based on a condition given by the same cell. So for example I have
Cell C9 = Bloqueo (for Spanish)
and through Macros I'm changing that to English so it will be like
Cell C9 = Block
so when C9 is Bloqueo I need the following code
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$C$9" Then Call JBACond1
End Sub
But when C9 is Block I need the following code
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$C$9" Then Call JBACond2
End Sub
So it's possible to trigger different macros based on how the statement of the same cell change.
Thanks in advance for your assistance.