Translate this code to worksheet_calculate listener

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:

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Try:
Code:
Private Sub Worksheet_Calculate()

    If Range("G1").Value = "In-Play" Then
        Range("U9").Value = Range("G9").Value
        Range("U11").Value = Range("G11").Value
    End If
    
End Sub
 
Last edited:
Upvote 0
I'm guessing this is for some betting app, is there any reason to switch to calculate instead of change? Calculate is looking for a calculation to fire off the event so unless you have formulas on the sheet you won't fire it. To avoid Worksheet_change triggering itself we normally just turn off events whilst the code runs, to freeze your off prices just amend it to

Code:
Private Sub Worksheet_Change(ByVal Target As Range) 
On Error Goto xit
   Dim KeyCells As Range

   If Target.Address <> Range("G1").Address Then Exit Sub
    Application.EnableEvents = False



        If Range("G1").Value = "In-play" And Range("U9").Value =""  Then

         Range("U9").Value = Range("G9").Value
         Range("U11").Value = Range("G11").Value

        End If

xit:
 Application.EnableEvents = True
 End Sub
 
Last edited:
Upvote 0
Hi MrTeeny. Your code works when I manually type in In-play however does not work when linked with the betting app which is constantly refreshing. This is why calculate may need to be used.
 
Upvote 0
No problem , the way you've coded it is that it will only fire once the value in G3 changes, once that has been set as In-play it won't detect a change so will exit the sub. With calculate your code will fire on every calculation of the sheet.
 
Upvote 0

Forum statistics

Threads
1,215,034
Messages
6,122,782
Members
449,095
Latest member
m_smith_solihull

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top