VBA实用技巧-导入excel
时 间:2015-11-24 00:13:04
作 者:Allen Lee ID:13894 城市:厦门
摘 要:导入excel
正 文:
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
'引用Microsoft ActiveX Data Objects 2.x Library
'引用Microsoft AD0 Ext 2.8 for DDL and Security
Dim cnn As New ADODB.Connection
Dim rs As ADODB.Recordset
Dim Cat As New ADOX.Catalog
Dim myPath As String
Dim p
Dim sh As Worksheet
Dim SQL As String
Dim F As Boolean
Dim wk As Workbook
myPath = ThisWorkbook.Path & "\"
myData = ThisWorkbook.Path & "\data.accdb"
p = Dir(myPath & "A list *.xls?")
Set wk = Workbooks.Open(ThisWorkbook.Path & "\" & p)
If Not wk Is Nothing Then
If Dir(myData) = "" Then
Cat.Create "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & myData
Set Cat = Nothing
F = True '数据库文件不存在标志
End If
cnn.Open "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & myData
For Each sh In Worksheets
If Not F Then '数据库文件已经存在,先判断同名数据表是否存在,如果存在就删除它
Set rs = cnn.OpenSchema(adSchemaTables, Array(Empty, Empty, sh.Name, Empty))
If Not rs.EOF Then
SQL = "Drop TABLE " & sh.Name
cnn.Execute SQL
End If
End If
SQL = "Select * INTO " & sh.Name & " FROM [Excel 12.0;Database=" & wk.FullName _
& ";].[sheet1$" & Range("a1").CurrentRegion.Address(0, 0) & "]"
cnn.Execute SQL
Next
MsgBox " 成功导入 ", vbInformation, " 导入数据库 "
cnn.Close
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
Set cnn = Nothing
Else
MsgBox "无须更新"
End If
End Sub
Access软件网QQ交流群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- 【Access高效办公】按日期...(06.12)
- 合并列数据到一个文本框的示例;...(05.06)
- 通过命令按钮让Access列表...(04.24)
- 统计当月之前(不含当月)的记录...(03.11)
- 【Access Inputbo...(03.03)
- 按回车键后光标移动到下一条记录...(02.12)
- 【Access Dsum示例】...(02.07)
- Access对子窗体的数据进行...(02.05)
- 【Access高效办公】上月累...(01.09)

学习心得
最新文章
- Access快速开发平台--Acc...(06.16)
- 【Access高效办公】按日期区间...(06.12)
- Access快速开发平台--生成复...(06.07)
- 仓库管理实战课程(25)-导航菜单...(06.06)
- 仓库管理实战课程(24)-库存月结...(06.05)
- 分享一个简单的X氏家谱小示例(06.04)
- 仓库管理实战课程(23)-先入先出(06.02)
- 仓库管理实战课程(22)-代理商库...(05.30)
- 仓库管理实战课程(21)-安全库存...(05.28)
- Access快速开发平台--如何添...(05.26)