(若是和其他不同軟體互動之問題 請記得一併填寫)
軟體:EXCEL
版本:2007
匯入外部資料日期格式為 08/01/15 月/日/年
但匯入之後 資料會自動跳掉變成 2008/01/15
有什麼方法可以限制匯入資料為文字格式呢?
謝謝
Sub 拉取網頁_原始版()
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://www.covers.com/pageLoader/pageLoader.aspx?page=/data/mlb/teams/pastresults/2015/team2959.html"
_
, Destination:=Range("$A$9"))
.Name = "team2959"
.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