ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 萌新吐血求助——批量txt导入excel并选取特定数据分列排序

[复制链接]

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-9-13 22:01 | 显示全部楼层
chxw68 发表于 2018-9-13 21:50
应该有不是日期的数据!

老师您好,我找到问题的原因了,txt数据文件夹有100+是以901-F-01-a,901-F-01-b等序列进行命名的,这种命名方式是小孩自定义的,意思是9月1号的F-01号传感器的a位置及b位置,这样的话我是不是得修改代码关于日期的定义呢?

TA的精华主题

TA的得分主题

发表于 2018-9-13 22:03 | 显示全部楼层
Roota 发表于 2018-9-13 22:01
老师您好,我找到问题的原因了,txt数据文件夹有100+是以901-F-01-a,901-F-01-b等序列进行命名的,这种 ...

你上传一个TXT文件上来。

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-9-13 22:10 | 显示全部楼层
老师您好,文件格式大致是这样的,这位小朋友测的位置比较多,所以一天的数据量也很多

901-温度数据.rar

60.23 KB, 下载次数: 8

TA的精华主题

TA的得分主题

发表于 2018-9-13 22:26 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
  1. Sub test()
  2.     Dim ColumnIndex As Integer, RowIndex As Integer
  3.     Dim arr, brr, Crr, mypath$, myname$, reg As New RegExp

  4.     With reg
  5.         .Global = False
  6.         .Pattern = "^[a-zA-Z]+\s+(\d{4}-\d{2}-\d{2}\s+\d{2}:\d{2}:\d{2})\s+\|\s+[\d\.]+\s+\%\s+([\d\.]+)\s+C\s+$"
  7.     End With
  8.     mypath = ThisWorkbook.Path & ""
  9.     myname = Dir(mypath & "*.txt")
  10.     With Worksheets("sheet1")
  11.         .Cells.Clear
  12.     End With

  13.     ColumnIndex = 1
  14.     RowIndex = 1

  15.     Do While myname <> ""
  16.         Open mypath & myname For Input As #1
  17.         arr = Split(StrConv(InputB(LOF(1), 1), vbUnicode), vbCrLf)
  18.         Close #1
  19.         ReDim brr(0 To UBound(arr) - 1, 1 To 2)

  20.         ColumnIndex = ColumnIndex + 1
  21.         For i = 0 To UBound(arr) - 1

  22.             ss = Trim(arr(i))
  23.             If Len(ss) > 0 Then
  24.                 Set mh = reg.Execute(ss)
  25.                 If mh.Count > 0 Then
  26.                     brr(i, 1) = mh(0).SubMatches(0)
  27.                     brr(i, 2) = Val(mh(0).SubMatches(1))
  28.                 End If
  29.             End If
  30.         Next
  31.         rq = CDate(brr(0, 1))
  32.         For i = 0 To UBound(brr)
  33.             brr(i, 1) = Round((CDate(brr(i, 1)) - rq) * 24 * 60 * 60, 0)
  34.         Next
  35.         With Worksheets("sheet1")
  36.             .Cells(RowIndex, 1) = Split(myname, ".")(0)
  37.             .Cells(1, ColumnIndex) = Split(myname, ".")(0)
  38.             .Cells(RowIndex + 1, 1).Resize(UBound(brr) + 1, 1) = Application.Index(brr, , 1)
  39.             .Cells(RowIndex + 1, ColumnIndex).Resize(UBound(brr) + 1, 1) = Application.Index(brr, , 2)
  40.             RowIndex = .Cells(Rows.Count, 1).End(xlUp).Row + 1
  41.         End With

  42.         myname = Dir
  43.     Loop
  44. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2018-9-13 22:40 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
chxw68 发表于 2018-9-13 22:03
你上传一个TXT文件上来。

老师您好,我好像找到问题了,应该是有一些txt数据中日期上乱的,传感器没有重新设置时间,例如某几个txt中日期格式为2000-00-00,我将其全部替换为2018-09-01之后,您的代码就可以正常运行了

TA的精华主题

TA的得分主题

发表于 2018-9-14 06:18 | 显示全部楼层
  1. Sub test()
  2.     Dim ColumnIndex As Integer, RowIndex As Integer
  3.     Dim arr, brr, Crr, mypath$, myname$, reg As New RegExp
  4.     On Error Resume Next
  5.     With reg
  6.     End With
  7.     mypath = ThisWorkbook.Path & ""
  8.     myname = Dir(mypath & "*.txt")
  9.     With Worksheets("sheet1")
  10.         .Cells.Clear
  11.     End With

  12.     ColumnIndex = 1
  13.     RowIndex = 1

  14.     Do While myname <> ""

  15.         reg.Global = False
  16.         reg.Pattern = "^[a-zA-Z]+\s+(\d{4}-\d{2}-\d{2}\s+\d{2}:\d{2}:\d{2})\s+\|\s+[\d\.]+\s+\%\s+([\d\.]+)\s+C\s+$"

  17.         Open mypath & myname For Input As #1
  18.         arr = Split(StrConv(InputB(LOF(1), 1), vbUnicode), vbCrLf)
  19.         Close #1
  20.         ReDim brr(0 To UBound(arr) - 1, 1 To 2)

  21.         ColumnIndex = ColumnIndex + 1
  22.         For i = 0 To UBound(arr) - 1

  23.             ss = Trim(arr(i))
  24.             If Len(ss) > 0 Then
  25.                 Set mh = reg.Execute(ss)
  26.                 If mh.Count > 0 Then
  27.                     brr(i, 1) = mh(0).SubMatches(0)
  28.                     brr(i, 2) = Val(mh(0).SubMatches(1))
  29.                 End If
  30.             End If
  31.         Next

  32.         For i = 0 To UBound(brr)
  33.             reg.Global = True
  34.             reg.Pattern = "-00"
  35.             brr(i, 1) = reg.Replace(brr(i, 1), "")
  36.             rq = CDate(brr(0, 1))
  37.             brr(i, 1) = Round((CDate(brr(i, 1)) - rq) * 24 * 60 * 60, 0)
  38.         Next
  39.         With Worksheets("sheet1")
  40.             .Cells(RowIndex, 1) = Split(myname, ".")(0)
  41.             .Cells(1, ColumnIndex) = Split(myname, ".")(0)
  42.             .Cells(RowIndex + 1, 1).Resize(UBound(brr) + 1, 1) = Application.Index(brr, , 1)
  43.             .Cells(RowIndex + 1, ColumnIndex).Resize(UBound(brr) + 1, 1) = Application.Index(brr, , 2)
  44.             RowIndex = .Cells(Rows.Count, 1).End(xlUp).Row + 1
  45.         End With

  46.         myname = Dir
  47.     Loop
  48. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2018-9-14 06:23 | 显示全部楼层
901-温度数据.zip (394.97 KB, 下载次数: 15)

TA的精华主题

TA的得分主题

发表于 2018-9-14 08:16 | 显示全部楼层
Roota 发表于 2018-9-13 22:40
老师您好,我好像找到问题了,应该是有一些txt数据中日期上乱的,传感器没有重新设置时间,例如某几个txt ...

就是这个问题!2000-00-00不是合法日期,就无法进行日期计算,所以代码就出错。

TA的精华主题

TA的得分主题

发表于 2018-9-14 08:45 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2018-9-14 08:46 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
zopey 发表于 2018-9-14 08:45
加个语句
     on error resume next

这个是麻醉药,止痛但不治病。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-17 03:07 , Processed in 0.023715 second(s), 8 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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