breakbacktennis
New Member
- Joined
- Aug 30, 2017
- Messages
- 33
Hi, Im looking to translate this code into the worksheet_calculate listener as advised by members, however my lack of vba knowledge is getting the way. Is there anyway that can rewrite this code so it works in the calculate listener. Thankyou in advance!!
Code:
[COLOR=#333333][COLOR=#333333]Private Sub Worksheet_Change(ByVal Target As Range)[/COLOR][/COLOR][COLOR=#333333]
Dim KeyCells As Range[/COLOR]
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][COLOR=#333333]End Sub[/COLOR][/COLOR]
Last edited: