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怎么按年龄段来统计...(01.26)
- 【Access高效办公】上一年...(12.29)
- 用Access连续窗体制作的树...(11.03)
- 【Access高效办公】上一年...(10.30)
- Access制作的RGB转CM...(09.22)
- Access制作的RGB调色板...(09.15)
- Access制作的快速车牌输入...(09.13)
- 【Access高效办公】统计当...(06.30)
- 【Access高效办公】用复选...(06.24)
学习心得
最新文章
- Access怎么按年龄段来统计人数...(01.26)
- 【Access更新查询示例】怎么把...(01.19)
- Access快速开发平台--错误号...(01.13)
- Access快速开发平台--错误号...(01.04)
- 【Access高效办公】上一年度累...(12.29)
- Access快速开发平台--2.6...(12.24)
- Access快速开发平台企业版--...(12.10)
- SqlServer默认当前时间用什...(11.28)
- 【Access日期时间区间段查询示...(11.19)
- Microsoft Access不...(11.07)


.gif)
