Thank you so much for your patient help.
Now I know how to run a macro continuously I can experiment with more interesting stuff than copying a digit one from one cell into another!

Jeff
Moderator: 2020vision
by Ferru123 » Tue Jul 18, 2017 10:24 am
by Ferru123 » Sun Jul 23, 2017 1:31 pm
by Captain Sensible » Sun Jul 23, 2017 2:20 pm
Private Sub Worksheet_Calculate()
Static MyMarket As Variant
Application.EnableEvents = False
Application.Calculation = xlCalculationManual
If [A1].Value = MyMarket Then
' Your continuous sub rotuines can be entered or called fro here
GoTo Xit
Else
MyMarket = [A1].Value
'Call your subroutines that clear any old cells etc or just enter the code
Range("AC5:AD5").Value ="" ' we'll just clear data in cells C5 and D5 once when entering the maret for first time
End If
Xit:
Application.EnableEvents = True
Application.Calculation = xlCalculationAutomatic
End Sub
by Ferru123 » Mon Jul 31, 2017 9:19 pm
by Captain Sensible » Mon Jul 31, 2017 9:45 pm
If Target.Columns.Count <> 16 Then Exit Sub
by Ferru123 » Mon Jul 31, 2017 10:28 pm
by Captain Sensible » Mon Jul 31, 2017 10:34 pm
by Ferru123 » Thu Aug 03, 2017 12:47 pm
by Captain Sensible » Thu Aug 03, 2017 12:53 pm
by Ferru123 » Thu Aug 03, 2017 1:04 pm
by Captain Sensible » Thu Aug 03, 2017 1:24 pm
Sub NewProcedure1()
For i =5 to 10
If Range("AE" & i).Value=1 then Range("AF" & i).Value=Range("AE" & i).Value
next i
end sub
by Ferru123 » Thu Aug 03, 2017 3:06 pm
by Captain Sensible » Thu Aug 03, 2017 3:48 pm
by Ferru123 » Thu Aug 03, 2017 6:46 pm
by Captain Sensible » Thu Aug 03, 2017 7:13 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.