by Tradyann » Fri Dec 30, 2011 11:56 pm
Hi,
I don't know if it's possible to place multiple bets with excel sheet at once.
ex:
STAKE 10
ODDS 1.30
LAY...
CLEAR
follow by..
STAKE 10
ODDS 1.28
LAY...
CLEAR
I know that this structure is necessary for a refresh between each action :
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Columns.Count = 16 Then
Application.EnableEvents = False
' insert your code here
Application.EnableEvents = True
End If
End Sub
but I don't know if it's easy or not for a newbie in vba to develop a code for placing multi bets ?