Access içindeyken excelden access’e veri alma
lmport data from excel to access in access with VBA
DoCmd.TransferSpreadsheet from Excel to Access
TransferSpreadsheet – Access
You can import from Excel into Access (this runs in Access).
1-Access açılır
2-Alınacak Excel sayfasi (“sheet1.xls”), Excel kapalı olmalı
3- VBA programı (Access de)
access programı ile sheet1.xlsx aynı klasörde olmalı, yada
Application.CurrentProject.Path & “\sheet1.xlsx” yerine “c:\yourpath\sheet1.xlsx” yazılmalı.
Sub fromExcel() DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, "ogrenci", Application.CurrentProject.Path & "\sheet1.xlsx", True End Sub
Run fromExcel()
4-sheet1.xlsx den alınan verilerle ogrenci tablosu oluştu.