Hello Friends,
I am using the below code in my file...
I would like to add second criteria in the code.
Cell C3 has numbers
Cell B4 has text (Show Quantity, Show Value, Show Quantity & Value)
I want the code to trigger as soon as value in either cell changes.
Any help would be appreciated.
Regards,
Humayun
I am using the below code in my file...
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count = 1 And Target.Address = Range("C3").Address Then
Select Case Target.Value
Case "1SHOW QUANTITY"
Call one_show_quantity
Case "1SHOW VALUE"
Call one_show_value
Case "1SHOW QUANTITY & VALUE"
Call one_show_quantity_value
Case "2SHOW QUANTITY"
Call two_show_quantity
Case "2SHOW VALUE"
Call two_show_value
Case "2SHOW QUANTITY & VALUE"
Call two_show_quantity_value
End Select
End If
End Sub
I would like to add second criteria in the code.
Cell C3 has numbers
Cell B4 has text (Show Quantity, Show Value, Show Quantity & Value)
I want the code to trigger as soon as value in either cell changes.
Any help would be appreciated.
Regards,
Humayun
Last edited: