Have loaded all todays football matches, that have a Correct Score market, to the Quick Pick list, and because a large number start at the same time the 'Clear Bet Refs on Auto Select market' won't do what I want.
I want the Bet Ref, Bet Time, Av. Matched Odds, Matched Stake and Profit/Loss Area (called this 'Bet_Area') to clear when I manually select the next fooball game, so when cell A1 changes the 'Bet-Area' is cleared.
Got this bit of code but ain't working :-
- Code: Select all
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" Then
Application.Goto Reference:="Bet_Area"
Selection.ClearContents
Range("Q4").Select
End If
End Sub