刷新 BackgroundQuery:=False |需要帮助?
Refresh BackgroundQuery:=False | help needed?
我看过其他一些有同样错误的人,但他们的解决方案对我没有帮助。
Refresh BackgroundQuery:=False
Error 1004
这是我的代码
'
' LoadData Macro
'
'
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;Macintosh HD:Users:Karrar:Desktop:Excel.txt", Destination:=Range("A1"))
.Name = "Excel"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.RefreshOnFileOpen = False
.BackgroundQuery = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = False
.TextFilePromptOnRefresh = False
.TextFilePlatform = xlMacintosh
.TextFileStartRow = 1
.TextFileParseType = xlDelimited
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = True
.TextFileTabDelimiter = False
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = True
.TextFileColumnDataTypes = Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)
.UseListObject = False
.Refresh BackgroundQuery:=False
End With
End Sub
试试下面的行
ActiveSheet.Range("A1").QueryTables(1).Refresh BackgroundQuery:=False
或
ActiveSheet.QueryTables(1).Refresh BackgroundQuery:=False
我看过其他一些有同样错误的人,但他们的解决方案对我没有帮助。
Refresh BackgroundQuery:=False
Error 1004
这是我的代码
'
' LoadData Macro
'
'
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;Macintosh HD:Users:Karrar:Desktop:Excel.txt", Destination:=Range("A1"))
.Name = "Excel"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.RefreshOnFileOpen = False
.BackgroundQuery = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = False
.TextFilePromptOnRefresh = False
.TextFilePlatform = xlMacintosh
.TextFileStartRow = 1
.TextFileParseType = xlDelimited
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = True
.TextFileTabDelimiter = False
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = True
.TextFileColumnDataTypes = Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)
.UseListObject = False
.Refresh BackgroundQuery:=False
End With
End Sub
试试下面的行
ActiveSheet.Range("A1").QueryTables(1).Refresh BackgroundQuery:=False
或
ActiveSheet.QueryTables(1).Refresh BackgroundQuery:=False