Moderator: 2020vision
by Captain Sensible » Thu Nov 01, 2007 12:18 am
by phrenetic » Thu Nov 01, 2007 1:08 am
Private Sub Worksheet_Change(ByVal Target As Range)
Dim iRow As Integer
Dim iCol As Integer
Dim cell As Object
For Each cell In Target
iRow = cell.Row
iCol = cell.Column
' Update Max and Min Back Values
If iCol = 6 And iRow > 4 And iRow < 46 Then
Application.EnableEvents = False
If IsEmpty(Range("AJ" & iRow).Value) Then Range("AJ" & iRow).Value = 0
If IsEmpty(Range("AI" & iRow).Value) Then Range("AI" & iRow).Value = 1001
If Not IsEmpty(cell.Value) Then
If cell.Value < Range("AI" & iRow).Value And cell.Value > 1 Then Range("AI" & iRow).Value = cell.Value
If cell.Value > Range("AJ" & iRow).Value And cell.Value < 1001 Then Range("AJ" & iRow).Value = cell.Value
End If
Application.EnableEvents = True
End If
' Update Max and Min Lay Values
If iCol = 8 And iRow > 4 And iRow < 46 Then
Application.EnableEvents = False
If IsEmpty(Range("AL" & iRow).Value) Then Range("AL" & iRow).Value = 0
If IsEmpty(Range("AK" & iRow).Value) Then Range("AK" & iRow).Value = 1001
If Not IsEmpty(cell.Value) Then
If cell.Value < Range("AK" & iRow).Value And cell.Value > 1 Then Range("AK" & iRow).Value = cell.Value
If cell.Value > Range("AL" & iRow).Value And cell.Value < 1001 Then Range("AL" & iRow).Value = cell.Value
End If
Application.EnableEvents = True
End If
Next cell
End Sub
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.