All, I am due to go on holiday soon and I want to keep my bot running whilst away. This will require me to load each days horse racing win markets in the morning.
Does anyone know how I can create an excel command to do this?
Private Sub Worksheet_Change(ByVal Target As Range) Application.EnableEvents = False If Cells(2,3).Value = 0.45 Then Cells(2,17).Value = -3 End If Application.EnableEvents = True End Sub