breakbacktennis
New Member
- Joined
- Aug 30, 2017
- Messages
- 33
Hi, Im in desperate need of help with this VBA code. The code works fine when entered manually however I need the code to work when linked with a live feed.
Code:
[COLOR=#333333]Private Sub Worksheet_Change(ByVal Target As Range)[/COLOR] Dim KeyCells As Range
If Target.Address <> Range("G1").Address Then Exit Sub
If Range("G1").Value = "In-play" Then
Range("U9").Value = Range("G9").Value
Range("U11").Value = Range("G11").Value
End If
[COLOR=#333333]End Sub[/COLOR]