View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
csus_tony csus_tony is offline
external usenet poster
 
Posts: 1
Default Excel VBA - Worksheet Coding Help

Hello,

i put a command button on the first sheet of a template workbook and i
is my intention to put data from a web query to another sheet in th
same workbook when i press the command button created on sheet1. th
code i have is as follows:

With ThisWorkbook.Worksheets("Sheet2").QueryTables.Add( Connection:= _
"URL;http://chart.yahoo.com/table.csv?a=...amp;ignore=.csv", _
Destination:=Range("a6"))

.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = False
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xloverwriteclearcells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
'.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingAll
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.Refresh BackgroundQuery:=False
.TextFileCommaDelimiter = True
End With

Range("A6:A7").Select
Selection.TextToColumns Destination:=Range("A6")
DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=False
_
Semicolon:=False, Comma:=True, Space:=False, Other:=False, FieldInfo _
:=Array(Array(1, 1), Array(2, 1), Array(3, 1), Array(4, 1), Array(5
1), Array(6, 1), _
Array(7, 1))
Range("A7:G3").Select
Selection.Columns.AutoFit

i am getting the following error:

this destinationrange is not on the same worksheet that the query tabl
is being created on.

how should i modify my code and/or approch to achive my goal?

thank you for any help you can offer.

ton

--
Message posted from http://www.ExcelForum.com