Skip to main content

AccessTr.neT


Excelden Veri Alırken Dosyanın Kapanmaması

Excelden Veri Alırken Dosyanın Kapanmaması

#5
Private Sub EXCELDENAL_Click()

On Error GoTo EXCELDENAL_Err
Dim fDialog As Office.FileDialog
   Dim varFile As Variant
   Dim dosya As String
  Set fDialog = Application.FileDialog(msoFileDialogFilePicker)

  With fDialog
     .AllowMultiSelect = False
     .title = "Lütfen Aktaracağınız Bilgilerin Bulunduğu Excel Dosyasını Seçin"
     .Filters.Clear
     .Filters.Add "Excel 2003", "*.xls"
     .Filters.Add "Excel 2007", "*.xlsx"
     .Filters.Add "All Files", "*.*"
     
     If .show = True Then
     
   For Each varFile In .SelectedItems
       
   dosya = varFile
   Dim sonsatirno As Integer
   Dim crt As Long
   Dim kacadet, Guncel, Yeni As Integer
   Dim strkriter, strokulturu, strSubeAdi As String
   
   Dim xlApp As Excel.Application
   Dim xlBook As Excel.Workbook
   
   Set xlApp = CreateObject("Excel.Application")
   Set xlBook = xlApp.Workbooks.Open(dosya)
   Set xlSheet = xlBook.Worksheets(1)
   
   sonsatirno = xlSheet.Range("A65536").End(xlUp).Row
   Debug.Print sonsatirno

   For I = 8 To sonsatirno
    If xlSheet.Cells(I, "A") <= 0 Then
                'MsgBox crt & " " & " bu Gelir değil"
       Else
       If xlSheet.Cells(I, "D") <= 0 Then
                'MsgBox crt & " " & " bu Gelir değil"
       Else
             
   strSQL = "SELECT * FROM Tbl_Gelir "
   Set rstkayit = New ADODB.Recordset
   rstkayit.Open strSQL, CurrentProject.Connection, adOpenKeyset, adLockOptimistic
   With rstkayit
   kriterim = xlSheet.Cells(I, "B") & "-" & Format$(xlSheet.Cells(I, "A"), "gg.mm.yyyy")
       .Find "[kriter]=" & "'" & kriterim & "'"
   If Not rstkayit.EOF Then

       .Fields("Tarih") = xlSheet.Cells(I, "A")
       .Fields("FisNo") = xlSheet.Cells(I, "B")
       .Fields("GelirAciklamasi") = xlSheet.Cells(I, "C")
       .Fields("Tutar") = xlSheet.Cells(I, "D")
       .Fields("ay") = Format$(xlSheet.Cells(I, "A"), "mmmm")
       .Fields("Yil") = Format$(xlSheet.Cells(I, "A"), "yyyy")
       '.Fields("kriter") = xlSheet.Cells(I, "B") & "-" & xlSheet.Cells(I, "A")

   Guncel = Guncel + 1
   lbxData.Requery
       .Update
   Else
       .AddNew
       .Fields("Tarih") = xlSheet.Cells(I, "A")
       .Fields("FisNo") = xlSheet.Cells(I, "B")
       .Fields("GelirAciklamasi") = xlSheet.Cells(I, "C")
       .Fields("Tutar") = xlSheet.Cells(I, "D")
       .Fields("ay") = Format$(xlSheet.Cells(I, "A"), "mmmm")
       .Fields("Yil") = Format$(xlSheet.Cells(I, "A"), "yyyy")
       .Fields("kriter") = xlSheet.Cells(I, "B") & "-" & xlSheet.Cells(I, "A")

   Yeni = Yeni + 1
   lbxData.Requery
       .Update
   End If
   End With
   End If
End If
               Next
           xlApp.Visible = False

           xlBook.Close True
   
           Set xlSheet = Nothing
           Set xlBook = Nothing
   
           xlApp.Quit
   
           Set xlApp = Nothing

               lbxData.Requery
           If Guncel > 0 And Yeni = 0 Then
               MsgBox Guncel & " " & " Kayıt Güncellendi"
           ElseIf Guncel = 0 And Yeni > 0 Then
                MsgBox Yeni & " " & "Yeni Kayıt Eklendi"
           End If
               
               
        Next
     Else
        MsgBox "Vazgeçildi."
     End If
  End With
EXCELDENAL_Exit:
   Exit Sub

EXCELDENAL_Err:
   MsgBox Error$
   Resume EXCELDENAL_Exit

End Sub

Kodun son hali.
Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da

Bu Konudaki Yorumlar
Cvp: Excelden Veri Alırken Dosyanın Kapanmaması - Yazar: idrisy - 30/10/2017, 16:54
Task