bluefeather8989
Active Member
- Joined
- Nov 20, 2009
- Messages
- 331
- Office Version
- 365
- Platform
- Windows
i have this work sheet code.I need to add in another code with it how do i do that.
need to add this code into the first code
then i need a code that says if both B8 and B12 is greater than 100
Call L_StartRace
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("B8")) Is Nothing Then
If Target.Value >= 1 And Target.Value <= 532 And Range("D8").Value <> "" Then
Else
Application.EnableEvents = False
Call Blank
Application.EnableEvents = True
End If
End If
End Sub
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("B12")) Is Nothing Then
If Target.Value >= 1 And Target.Value <= 632 And Range("D12").Value <> "" Then
Else
Application.EnableEvents = False
Call Blank_2
Application.EnableEvents = True
End If
End If
End Sub
Call L_StartRace