İyi akşamlar!
Aşağıda yazmış olduğum kodlarla, döngüsel bir makro oluşturmak istiyorum. 1 de 150 ye kadar her seferinde f=1 in birer birer artarak 150 olduğunda makronun durmasını, bu arada alınan bilginin yazıldığı Range("A1") değerinin f, değeri 1 arttıkça 20 değer artmasını istiyorum.
Yani,
f=1 olduğunda A=21,
f=2 olduğunda A=41,
f=3 olduğunda A=61,
.
.
.
f=150 olduğunda A=3001,
bu şekilde bugün oynanan maçlarda atılan golleri excel'e yazdırmış olacağım.
Bu konuda bana yardımcı olacak arkadaşlara şimdiden teşekkür ederim.
Saygılarımla,
Sub Makro1()
ActiveCell.FormulaR1C1 = _
"http://active.soccerstand.com/free/megabet/goals.php?f=1"
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://active.soccerstand.com/free/megabet/goals.php?f=1", Destination _
:=Range("A21"))
.Name = "goals.php?f=1"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
End Sub
Aşağıda yazmış olduğum kodlarla, döngüsel bir makro oluşturmak istiyorum. 1 de 150 ye kadar her seferinde f=1 in birer birer artarak 150 olduğunda makronun durmasını, bu arada alınan bilginin yazıldığı Range("A1") değerinin f, değeri 1 arttıkça 20 değer artmasını istiyorum.
Yani,
f=1 olduğunda A=21,
f=2 olduğunda A=41,
f=3 olduğunda A=61,
.
.
.
f=150 olduğunda A=3001,
bu şekilde bugün oynanan maçlarda atılan golleri excel'e yazdırmış olacağım.
Bu konuda bana yardımcı olacak arkadaşlara şimdiden teşekkür ederim.
Saygılarımla,
Sub Makro1()
ActiveCell.FormulaR1C1 = _
"http://active.soccerstand.com/free/megabet/goals.php?f=1"
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://active.soccerstand.com/free/megabet/goals.php?f=1", Destination _
:=Range("A21"))
.Name = "goals.php?f=1"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
End Sub