Moderator: 2020vision
by Dmite036 » Fri May 08, 2009 7:45 am
by danjuma » Fri May 08, 2009 11:02 am
by throwmeadisc » Fri May 08, 2009 11:19 am
=UPPER(SUBSTITUTE(A1," ",""))
by danjuma » Fri May 08, 2009 2:20 pm
throwmeadisc wrote:...Also it may be worth you adding in the time of race as sometimes two horses with the same name are running on the day. 'Free World' anyone? It's quite rare, but does happen...[/code]Al
by Captain Sensible » Fri May 08, 2009 3:24 pm
by Dmite036 » Fri May 08, 2009 4:08 pm
by barnov » Fri May 08, 2009 6:58 pm
' Declare Variables
Private MyMarket As String
Private RefreshCount As Long
Private Sub worksheet_change(ByVal Target As Range)
Application.EnableEvents = False
Application.Calculation = xlCalculationManual
Select Case Target.Columns.Count
Case 16 'odds and market info update
Call Market_Change
If RefreshCount = 4 Then Call Lookup_Runners
Case Else
End Select
LeaveRoutine:
Application.EnableEvents = True
Application.Calculation = xlCalculationAutomatic
End Sub
Private Sub Market_Change()
'check to see if market has changed
If Worksheets("wsWrk1").Range("A1").Value = MyMarket Then
RefreshCount = RefreshCount + 1
Else
MyMarket = Worksheets("wsWrk1").Range("A1").Value
RefreshCount = 1
End If
End Sub
Private Sub Lookup_Runners()
Dim dcell As Range
Dim trap As String
For Each dcell In Worksheets("wsWrk1").Range("a5:a10")
TrapCell = TrapCell + 1
Worksheets("wsLook1").Cells(TrapCell, 1).Value = MyMarket
Worksheets("wsLook1").Cells(TrapCell, 2).Value = dcell.Value
Next dcell
End Sub
by barnov » Fri May 08, 2009 7:10 pm
by Dmite036 » Sat May 09, 2009 5:33 am
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.