Moderator: 2020vision
by Toandfro » Thu Jan 08, 2026 12:01 pm
by MollyMoo » Thu Jan 08, 2026 7:45 pm
Private FullStream As Boolean
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
With ThisWorkbook.Sheets("Gruss") 'Replace Gruss with the name of your worksheet
If Not Intersect(Target, .Range("A1")) Is Nothing Then
FullStream = False
End If
End With
Application.EnableEvents = True
End Sub
Private Sub Worksheet_Calculate()
Application.EnableEvents = False
With ThisWorkbook.Sheets("Gruss") 'Replace Gruss with the name of your worksheet
IF .Range("Q2") = vbNullString Then
If .Range("E2") = "In Play" And Not FullStream Then
.Range("Q2") = "FULL-STREAM-ON"
FullStream = True
ElseIf .Range("E2") <> "In Play" And FullStream Then
.Range("Q2") = 2.5
FullStream = False
End If
End If
End With
Application.EnableEvents = True
End If
End Sub
by MollyMoo » Fri Jan 09, 2026 12:54 am
Private FullStream As Boolean
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
With ThisWorkbook.Sheets("Gruss") 'Replace Gruss with the name of your worksheet
If Not Intersect(Target, .Range("A1")) Is Nothing Then
FullStream = False
End If
End With
Application.EnableEvents = True
End Sub
Private Sub Worksheet_Calculate()
Application.EnableEvents = False
With ThisWorkbook.Sheets("Gruss") 'Replace Gruss with the name of your worksheet
If .Range("Q2") = vbNullString Then
If .Range("E2") = "In Play" And Not FullStream Then
.Range("Q2") = "FULL-STREAM-ON"
FullStream = True
ElseIf .Range("E2") <> "In Play" And FullStream Then
.Range("Q2") = 2.5
FullStream = False
End If
End If
End With
Application.EnableEvents = True
End Sub
by Toandfro » Fri Jan 09, 2026 5:52 am
by MollyMoo » Fri Jan 09, 2026 11:05 pm
by alrodopial » Sat Jan 10, 2026 8:49 pm
Toandfro wrote:Would an easier solution be for the BA program to accept a persistent value of say zero in Q2 which keeps Full Stream enabled. I'm not really seeing the logic of the FULL-STREAM-ON trigger as it stands, as without vba there seems no way to use it. Maybe Gary could help here, thanks
The strength of Gruss Software is that it’s been designed by one of you, a frustrated sports punter, and then developed by listening to dozens of like-minded enthusiasts.
Gruss is owned and run by brothers Gary and Mark Russell. Gary discovered Betfair in 2004 and soon realised that using bespoke software to place bets was much more efficient than merely placing them through the website.
Gary built his own software and then enhanced its features after trialling it through other Betfair users and reacting to their improvement ideas, something that still happens today.
He started making a small monthly charge so he could work on it full-time and then recruited Mark to help develop the products and Gruss Software was born.
We think it’s the best of its kind and so do a lot of our customers. But you can never stand still in this game and we’ll continue to improve the software if any more great ideas emerge.


