新建查询批量导出excel
时 间:2017-12-09 08:22:17
作 者:大海 ID:42003 城市:深圳
摘 要:新建查询批量导出excel
正 文:
新建一个查询,根据查询条件把access数据批量导出Excel
Sub accessTOexcel()
Dim strsql As String
Dim qry As DAO.QueryDef
Set qry = CurrentDb.QueryDefs("导出查询")
Dim rst As New ADODB.Recordset
strsql = "Select DISTINCT 供应商 FROM 采购价格"
rst.Open strsql, CurrentProject.Connection, adOpenKeyset, adLockOptimistic
rst.MoveFirst
Do Until rst.EOF
qry.Name = rst(0)
qry.SQL = "select 商品名称,供应商 from 采购价格 where 供应商='" & rst(0) & "'"
If Len(Dir(CurrentProject.Path & "\" & qry.Name & ".xls")) > 0 Then Kill CurrentProject.Path & "\" & qry.Name & ".xls"
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, qry.Name, CurrentProject.Path & "\" & qry.Name & ".xls", True
rst.MoveNext
Loop
qry.Name = "导出查询"
End Sub
Sub 新建查询()
Dim SQL0 As String
SQL0 = "select * from 采购价格 where 1<>1"
If SQL0 <> "" Then
CreateQuery SQL0, "导出查询"
Application.RefreshDatabaseWindow
End If
End Sub
Private Sub CreateQuery(ByVal ssql As String, QueryName As String)
Dim Qdef As QueryDef
On Error Resume Next
If DCount("*", "MSysObjects", "Type=5 and Name='" & QueryName & "'") = 0 Then
Set Qdef = CurrentDb.CreateQueryDef(QueryName)
Else
Set Qdef = CurrentDb.QueryDefs(QueryName)
End If
Qdef.SQL = ssql
Qdef.Close
Set Qdef = Nothing
End Sub
Sub 删除查询()
On Error Resume Next
DoCmd.DeleteObject acQuery, "导出查询"
Application.RefreshDatabaseWindow
End Sub
Public Function QueryExists(strQueryName As String) As Boolean
Dim accQry As AccessObject
QueryExists = False
For Each accQry In CurrentData.AllQueries
If strQueryName = accQry.Name Then
QueryExists = True
Exit For
End If
Next accQry
End Function
附 件:
图 示:
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)