I have two Subs that I need to incorporate. I can run one or the other, but not together? Any assistance gratefully acknowledged.
Code
Private Sub Worksheet_Calculate()
Dim Lr As Integer, Cel As Range, Rng As Range
With ThisWorkbook.Sheets("Bet Angel")
Lr = Range("A65536").End(xlUp).Row
Set Rng = .Range("O9:O" & Lr)
Application.EnableEvents = False
For Each Cel In Rng
If Cel.Value = "PLACED" Or Cel.Value = "MARKET_SUSPENDED" Or Cel.Value = "ERROR" Then Cel.ClearContents
Next
If .Range("B69").Value <> 1 Then
.Range("B70").Value = 0
End If
End With
Application.EnableEvents = True
End Sub
---------------------------------------------------------------------------------------------------------------------------
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
With ThisWorkbook
If .Sheets("Bet Angel").Range("B69").Value <> 1 Then
.Sheets("Bet Angel").Range("B70").Value = 0
End If
If .Sheets("Bet Angel").Range("B69").Value = 1 And .Sheets("Bet Angel").Range("B70").Value <> 1 Then
Copy_Race
.Sheets("Bet Angel").Range("B70").Value = 1
End If
Application.EnableEvents = True
End With
End Sub
Display More