EXCEL timer for horse racing in-play

Please post any questions regarding the program here.

Moderator: 2020vision

EXCEL timer for horse racing in-play

Postby excelbet » Wed Nov 07, 2012 5:48 pm

Hi all,
I need a timer in excel to use with triggered bet at a particular time of race in-running. Is there any way I can modify the countdown timer D2 to show the elapse time of race from the start rather from the scheduled off ?
By the way, I've already converted D2 timer to show time in seconds in a different cell.

Any help would be much appreciated.

Excelbet
excelbet
 
Posts: 20
Joined: Sun Feb 05, 2012 10:13 pm
Location: wexford ireland

Postby lindemann » Wed Nov 07, 2012 6:47 pm

lindemann
 
Posts: 70
Joined: Sun Feb 19, 2006 12:39 pm

Postby excelbet » Wed Nov 07, 2012 10:47 pm

Hi Lindemann,
Thanks for your quick response. I'll try it out over the weekend.
Sorry I missed that link earlier while browsing.

Excelbet
excelbet
 
Posts: 20
Joined: Sun Feb 05, 2012 10:13 pm
Location: wexford ireland

Postby brumbie » Sat Nov 10, 2012 4:28 am

I don't know if its of any use to you but I made a race timer excel sheet around february based on garys macro.I think its still up at:

http://uploading.com/files/get/99558aca/RACE_TIMER.xls

some of the times for the races are out but it may be of some use.
brumbie
 
Posts: 197
Joined: Tue Dec 28, 2010 2:00 am
Location: Brisbane,Australia

Postby excelbet » Tue Nov 13, 2012 12:40 am

Hi Brumbie & Lindemann,
Tested both methods over the weekend and the first one suits me best as I just need a simple timer from start of race but thank you Brumbie for your suggestion.
The VBA code I like works well in a separate excel sheet but how do I get it to work in the BA linked w/sheet as I have other VBA code running there also ?
Any further advice would be appreciated.

Excelbet
excelbet
 
Posts: 20
Joined: Sun Feb 05, 2012 10:13 pm
Location: wexford ireland

Postby xraymitch » Thu Nov 22, 2012 4:53 pm

lindemann wrote:Excel,

Have a look at this thread:

http://www.gruss-software.co.uk/forum/v ... php?t=7455


Thanks for that Gary - now not freezing ! :D . Strange that my amended version works fine on the horses though.

Thanks also go out to lindemann I am using his/your code with my minor change in the following markets:

Half Time Score - Sheet 1
Half Time / Full time - Sheet 2

I am hoping I can use those markets to tell when HT starts and second half begins. Should know in about 2 hours. Here is the code:

Sheet1:

Dim timeInPlay As Date
Dim turnedInPlay As Boolean

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Columns.Count = 16 Then
If Range("F2").Value = "Closed" Then
If Not turnedInPlay Then
turnedInPlay = True
timeInPlay = Now
End If
Else
turnedInPlay = False
End If
If turnedInPlay Then Range("T1").Value = DateDiff("s", timeInPlay, Now) Else Range("T1").Value = 0
End If
End Sub

Sheet2:

Dim timeInPlay As Date
Dim turnedInPlay As Boolean

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Columns.Count = 16 Then
If Range("E2").Value = "InPlay" And Range("U1") = "Closed" Then
If Not turnedInPlay Then
turnedInPlay = True
timeInPlay = Now
End If
Else
turnedInPlay = False
End If
If turnedInPlay Then Range("T1").Value = DateDiff("s", timeInPlay, Now) Else Range("T1").Value = -1
End If
End Sub
xraymitch
 
Posts: 410
Joined: Wed Jun 25, 2008 7:06 am
Location: UK

Postby xraymitch » Thu Nov 22, 2012 5:17 pm

Hi folks,

Sorry I got confused reply was meant to go here. I hope :?

http://www.gruss-software.co.uk/forum/p ... ile&u=1306
xraymitch
 
Posts: 410
Joined: Wed Jun 25, 2008 7:06 am
Location: UK

Postby xraymitch » Thu Nov 22, 2012 5:24 pm

Sorry still confused. :shock:

How do I refer to specific post in a thread :oops:

Can't believe I am being so dumb !!

8)
xraymitch
 
Posts: 410
Joined: Wed Jun 25, 2008 7:06 am
Location: UK


Return to Help

Who is online

Users browsing this forum: iceman, Majestic-12 [Bot] and 77 guests

Sports betting software from Gruss Software


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.