我创建了 VBA excel 脚本来从网站获取数据。
当它捕获时11-01
,excel 会自动转换为 11-Jan (11/01/2012) 而不是原来的 11-01。
不将 11-01 转换为 11-Jan 的方法是什么?
地址单位邮政 惹兰伦彭 11-01 128791
谢谢。
Set clip = New DataObject
clip.SetText "<html><table><tr>" _
& "<td>" & ieSearchGet.outerHTML & "</td>" _
& "</tr></table></html>"
clip.PutInClipboard
ActiveCell.Offset(1, 0).Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
ActiveSheet.PasteSpecial "Unicode Text"