ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 621|回复: 2

[求助] 问问大蚱,excel怎么获取网站表格最新的一期的数据

[复制链接]

TA的精华主题

TA的得分主题

发表于 2022-5-2 21:16 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
怎么修改只显示最新网站表格一期的数据,原有一程序如下:


Private Sub CommandButton1_Click()
Range("A3:AC3500").Clear
k3dshijihao = "http://www.17500.cn/getData/ssq.TXT"
d3s = "WData3D_All"
    Cells(2, 1) = "开奖期号"
    Cells(2, 2) = "开奖日期"
    Cells(2, 3) = "红"
    Cells(2, 4) = "号"
    Cells(2, 5) = " "
    Cells(2, 6) = " "
    Cells(2, 7) = " "
    Cells(2, 8) = " "
    Cells(2, 9) = "蓝"
    Cells(2, 10) = "红"
    Cells(2, 11) = "号"
    Cells(2, 12) = "出"
    Cells(2, 13) = "球"
    Cells(2, 14) = "顺"
    Cells(2, 15) = "序"
    Cells(2, 16) = "投注总额"
    Cells(2, 17) = "奖池金额"
    Cells(2, 18) = "一等注数"
    Cells(2, 19) = "一等金额"
    Cells(2, 20) = "二等注数"
    Cells(2, 21) = "二等金额"
    Cells(2, 22) = "三等注数"
    Cells(2, 23) = "金额"
    Cells(2, 24) = "四等注数"
    Cells(2, 25) = "金额"
    Cells(2, 26) = "五等注数"
    Cells(2, 27) = "金额"
    Cells(2, 28) = "六等注数"
    Cells(2, 29) = "金额"
    cz = k3dshijihao: czmc = d3s
     With ActiveSheet.QueryTables.Add(Connection:= _
         "TEXT;" & cz, Destination:=Range("A3"))
        .Name = czmc
        .FieldNames = True
        .RowNumbers = False
        .FillAdjacentFormulas = False
        .PreserveFormatting = True
        .RefreshOnFileOpen = False
        .RefreshStyle = xlInsertDeleteCells
        .SavePassword = False
        .SaveData = True
        .AdjustColumnWidth = True
        .RefreshPeriod = 0
        .TextFilePromptOnRefresh = False
        .TextFilePlatform = xlWindows
        .TextFileStartRow = 1
        .TextFileParseType = xlDelimited
        .TextFileTextQualifier = xlTextQualifierDoubleQuote
        .TextFileConsecutiveDelimiter = True
        .TextFileTabDelimiter = False
        .TextFileSemicolonDelimiter = False
        .TextFileCommaDelimiter = False
        .TextFileSpaceDelimiter = True
        .TextFileColumnDataTypes = Array(1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)
        .TextFileTrailingMinusNumbers = True
        .Refresh BackgroundQuery:=False
    End With
Range("A" & (Application.Count(Range("a1:a3000")))).Select
End
End Sub
运行的结果是:
image.png
我只想要最后一排的几个数据
image.png
怎么修改呢?


TA的精华主题

TA的得分主题

发表于 2022-5-3 09:27 来自手机 | 显示全部楼层
本帖最后由 lss001 于 2022-5-3 11:28 编辑

Sub 获取双色球最新开奖数据()
     With CreateObject("Msxml2.Xmlhttp")
         Url = "http://www.17500.cn/getData/ssq.TXT" 'dlt
         .Open "GET", Url, Fslse
         .Send
         Do Until .ReadyState = 4: DoEvents: Loop
         s = Split(.ResponseText, " ")
     End With
     t = Cells(Rows.Count, 1).End(3).Row + 1
     r = UBound(s)
     For i = r - 27 To r - 20
         j = j + 1
         If i = r - 27 Then
               a = s(i)
         ElseIf i < r - 20 Then
               b = b & s(i) & " "
         Else: c = s(i)
         End If
         'Cells(t, j) = s(i) '写入表格
     Next
     MsgBox "双色球最新开奖数据:" & vbCrLf & _
            "开奖日期:" & a & vbCrLf & _
            "红球:" & b & vbCrLf & _
            "蓝球:" & c
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2022-5-4 15:29 | 显示全部楼层
非常感谢Iss001在五一假期中抽出宝贵时间完成该程序改写,你的方案非常可行!
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-12 06:03 , Processed in 0.021129 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

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