• DİKKAT

    DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
    Altın Üyelik Hakkında Bilgi

Excel Veri Alma

Katılım
19 Ocak 2019
Mesajlar
58
Excel Vers. ve Dili
Türkçe son sürüm
Altın Üyelik Bitiş Tarihi
08-04-2023
Kod:
Sub teams()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
On Error Resume Next
Dim straddress As String
straddress = Sheets("ae1").Range("ba11").Value
Sheets("ae2").Select
Sheets("ae2").Range("A1:az1000").Clear
            With ActiveSheet.QueryTables.Add(Connection:= _
            "URL;" & straddress _
            , Destination:=Range("A1"))
            .FieldNames = False
            .RowNumbers = False
            .FillAdjacentFormulas = False
            .PreserveFormatting = False
            .RefreshOnFileOpen = False
            .BackgroundQuery = False
            .RefreshStyle = xlInsertDeleteCells
            .SavePassword = False
            .SaveData = False
            .AdjustColumnWidth = False
            .RefreshPeriod = 0
            .WebSelectionType = xlAllTables
            '.WebSelectionType = xlSpecifiedTables
            '.WebTables = "14"
            .WebFormatting = xlWebFormattingNone
            .WebPreFormattedTextToColumns = False
            .WebConsecutiveDelimitersAsOne = False
            .WebSingleBlockTextImport = False
            .WebDisableDateRecognition = False
            .WebDisableRedirections = False
            .Refresh BackgroundQuery:=True
           End With
    Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdating = False
End Sub
merhaba ben veri almak istiyorum bu elimdeki vba ile

bu sitedeki veriyi çektiğimde



bu şekilde excele gelmekte değerleri almamakta acaba nerede hata yapıyorum yardımcı olursanız sevinirim.
 
Üst