Moderator: 2020vision
by wine » Wed Sep 01, 2010 3:23 pm
by U.F.O » Wed Sep 01, 2010 3:44 pm
by U.F.O » Wed Sep 01, 2010 4:17 pm
by GaryRussell » Thu Sep 02, 2010 7:39 am
=if(Y5="Y","CLEAR",IF(AND($E$2="In Play",$F$2="",$R12>=3,$R12<=7),"BACK-TL5-IP","")
)
by wine » Thu Sep 02, 2010 12:41 pm
GaryRussell wrote:When you set up the Excel link tick "Offset bet matched flag" under "Additional columns". Column Y will contain "Y" when both bets are matched. You can than use a formula like the following.
- Code: Select all
=if(Y5="Y","CLEAR",IF(AND($E$2="In Play",$F$2="",$R12>=3,$R12<=7),"BACK-TL5-IP","")
)
by GaryRussell » Thu Sep 02, 2010 1:37 pm
by wine » Thu Sep 02, 2010 4:15 pm
by GaryRussell » Thu Sep 02, 2010 4:22 pm
by wine » Mon Sep 13, 2010 4:03 pm
by GaryRussell » Tue Sep 14, 2010 8:38 am
Option Explicit
Dim inPlayTime As Date
Dim turnedInPlay As Boolean
Dim currentMarket As String
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Columns.Count = 16 Then
If [A1] <> currentMarket Then
currentMarket = [A1]
turnedInPlay = False
End If
If [E2] = "In Play" And Not turnedInPlay Then
turnedInPlay = True
inPlayTime = Now
End If
Application.EnableEvents = False
If turnedInPlay Then [T1] = DateDiff("n", inPlayTime, Now) Else [T1] = 0
Application.EnableEvents = True
End If
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.