I have extracted what I need into this "dashboard" but can't capture the kick off prices and financials - other than manually doing it

Any help very much appreciated (hope this picture works ???)

Moderator: 2020vision
by Toma » Tue Oct 29, 2013 5:53 pm
by osknows » Tue Oct 29, 2013 7:30 pm
Sub KickOff()
Dim lRow As Long
Dim ws As Worksheet
Dim rngToSearch As Range
Dim dataStartRow As Long
Set ws = R1
Set rngToSearch = ws.Range("F:K")
dataStartRow = 3
writeDataOffsetColumns = 8
lRow = LastRow(rngToSearch)
If lRow > dataStartRow Then
'Copies Contents of data to same row offset by 8 columns
rngToSearch.Resize(lRow - dataStartRow, rngToSearch.Columns.Count).Offset(dataStartRow, writeDataOffsetColumns).Value _
= rngToSearch.Resize(lRow - dataStartRow, rngToSearch.Columns.Count).Offset(dataStartRow, 0).Value
End If
End Sub
Function LastRow(ByVal rng As Range, Optional Offset As Long) As Long
On Error GoTo blankSheetError
'Identify next blank row
LastRow = rng.Find(What:="*", SearchDirection:=xlPrevious, SearchOrder:=xlByRows).Row + Offset
Exit Function
blankSheetError:
LastRow = 1 'Will produce error if blank sheet so default to row 1 as cannot have row 0
Resume Next
End Function
by Toma » Tue Oct 29, 2013 7:42 pm
by Toma » Tue Oct 29, 2013 7:48 pm
by osknows » Tue Oct 29, 2013 8:36 pm
by ghhtty » Fri Aug 29, 2014 12:16 pm
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.