设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

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

老鬼大哥, 帮帮忙救救我!

[复制链接]
跳转到指定楼层
1#
发表于 2005-3-7 03:43:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
求助:有关使用Web查询导入外部数据的问题



Q1.在使用Excel过程中,需要重复的使用Web查询导入外部数据,次数高达上千次,且每次查询的Web页面地址不同,规则如下:



http://www.xxx.xxx/xxx/xxx.jsp?page=n (n=1,1xxx)



请教各位“大虾”,该如何操作?



Q2.在Q1的结果中,根据sheet中字段A的值str,使用Web查询http://www.xxx.xxx/xxx/yyy.jsp?A=str,每次返回所需字段B的值Addr,存储于sheet中,共需进行3xxxx次查询,试问该如何操作?
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
2#
发表于 2005-3-7 05:38:00 | 只看该作者
把WEB查询用宏录制下来,然后套用FOR……NEXT语句循环
3#
 楼主| 发表于 2005-3-7 06:19:00 | 只看该作者
回复错了, 应该是这帖谢谢老大,我已经成功录制Sub Macro1()

'

' Macro1 Macro

' ・゙・ッ・橆帛hネユ : 2005/3/6  ・讖`・カゥ`テ・: Denzel

''

    With ActiveSheet.QueryTables.Add(Connection:= _

        "URL;http://sports.xxxxxxx.com/scores/2005/06/02/03/01/ninki_tfw.html", _

        Destination:=Range("B1"))

        .Name = "ninki_tfw"

        .FieldNames = True

        .RowNumbers = False

        .FillAdjacentFormulas = False

        .PreserveFormatting = True

        .RefreshOnFileOpen = False

        .BackgroundQuery = True

        .RefreshStyle = xlInsertDeleteCells

        .SavePassword = False

        .SaveData = True

        .AdjustColumnWidth = True

        .RefreshPeriod = 0

        .WebSelectionType = xlSpecifiedTables

        .WebFormatting = xlWebFormattingNone

        .WebTables = "29"

        .WebPreFormattedTextToColumns = True

        .WebConsecutiveDelimitersAsOne = True

        .WebSingleBlockTextImport = False

        .WebDisableDateRecognition = False

        .WebDisableRedirections = False

        .Refresh BackgroundQuery:=False

    End With

    Range("E24").Select

End Sub"URL;http://sports.xxxxxxx.com/scores/2005/06/02/03/01/ninki_tfw.html", _我要改的是上面url里面的最后一串数字, 就是说/2005/06/02/03/01//2005/06/02/03/02//2005/06/02/03/03//2005/06/02/03/04/我应该怎么改啊, 再教教我吧, 因为我不懂编程.
4#
发表于 2005-3-7 20:37:00 | 只看该作者
for i=1 to 4……"URL;http://sports.xxxxxxx.com/scores/2005/06/02/03/0" & i & "/ninki_tfw.html"next i
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-15 20:32 , Processed in 0.084656 second(s), 27 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

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