软件:MS Excel
版本:2007
大家好!!
想请问一下,有没有办法用Excel 汇入网页资料的时候把
数字格式转成文字
在汇入Excel呢?
因为我把
http://www.emega.com.tw/js/StockTable.htm
这个网页资料用汇入的方式
像台湾50原本它的代号是0050的
但是汇入以后,它的代号会变成50 而已
想必是因为Excel把它判定会数字的关系....
刚才用录制的方法
把它的VBA 码,录下来了
希望有大大可以指点一二,感激不尽!!
Sub test()
'
' test Macro
'
'
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://www.emega.com.tw/js/StockTable.htm",
Destination:=Range("$A$1"))
.Name = "StockTable"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
End Sub