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列表...(04.24)
- 统计当月之前(不含当月)的记录...(03.11)
- 【Access Inputbo...(03.03)
- 按回车键后光标移动到下一条记录...(02.12)
- 【Access Dsum示例】...(02.07)
- Access对子窗体的数据进行...(02.05)
- 【Access高效办公】上月累...(01.09)
- 【Access高效办公】上月累...(01.06)
- 【Access Inputbo...(12.23)

学习心得
最新文章
- 仓库管理实战课程(15)-月度库存...(04.30)
- Access选择打印机、横纵向、纸...(04.29)
- 仓库管理实战课程(14)-出库功能...(04.26)
- 通过命令按钮让Access列表框指...(04.24)
- 仓库管理实战课程(13)-入库功能...(04.21)
- Access控件美化之--美化按钮...(04.19)
- Access多行文本按指定字符筛选...(04.18)
- Microsoft Access数...(04.18)
- 仓库管理实战课程(12)-月度结存...(04.16)
- 仓库管理实战课程(11)-人性化操...(04.15)