设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 849|回复: 1
打印 上一主题 下一主题

[查询] 将查询内容导出到某固定表

[复制链接]
跳转到指定楼层
1#
发表于 2009-3-5 15:28:39 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我需要将查询的内容导出到一张EXCEL表中怎么实现?如果需要连续导多个用什么代码实现?
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
2#
发表于 2009-3-5 16:13:29 | 只看该作者
给你个代码看看,我写的
Set xlapp = CreateObject("Excel.Application")

Set xlapp = New Excel.Application
Set xlbook = xlapp.Workbooks.Add
Set xlsheet = xlbook.Worksheets(1)
xlapp.Application.ScreenUpdating = False
xlapp.Visible = True
xlapp.Application.ActiveSheet.Rows("1:1").Select
xlapp.Application.selection.Insert Shift:=xldown
xlapp.Application.ActiveSheet.Range("A1") = "SHIPPMENT TO USA " & date
xlapp.Worksheets(1).Range("A1").Select
With xlsheet
    .Cells(1, 1).ColumnWidth = 3
    .Cells(1, 2).ColumnWidth = 10
    .Cells(1, 3).ColumnWidth = 15
    .Cells(1, 4).ColumnWidth = 10
    .Cells(1, 5).ColumnWidth = 10
    .Cells(1, 6).ColumnWidth = 10
    .Cells(1, 7).ColumnWidth = 5
                  .Cells(2, 1) = ""
        .Cells(2, 2) = "JobLot"
        .Cells(2, 3) = "Co-Loader"
        .Cells(2, 4) = "P.O.L"
        .Cells(2, 5) = "P.O.D"
        .Cells(2, 6) = "Vel/Vovage"
        .Cells(2, 7) = "ETD"
      ...............................
end with
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2025-1-8 20:47 , Processed in 0.094583 second(s), 26 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表