我有一个Excel文档,可以从一个工作表中获取Google财经的数据。我想要的是将第一张工作表中的最后一行复制到同一工作簿中的另一张工作表。
这是我正在使用的代码
Sub Macro1()
Dim ws1 As Worksheet
Dim ws2 As Worksheet
Set ws1 = Worksheets("Sheet1")
Set ws2 = Worksheets("Sheet2")
ws1.Range("A1:E100").ClearContents
'CS = "URL;https://finance.google.com/finance/getprices?q=NIFTY&i=900&p=3d&f=o,h,l,c"
CS2 = ws2.Range("A3").Value
CS1 = CS2 & "&i=900&p=3d&f=o,h,l,c"
CS = "URL;https://finance.google.com/finance/getprices?q=" & CS1
ws1.Select
With ws1.QueryTables.Add(Connection:=CS, Destination:=Range("$A$1"))
.Name = "getprices?q=NIFTY&i=900&p=3d&f=o,h,l,c_12"
.FieldNames = True
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlAllTables
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
Rows("1:7").Select
Range("A7").Activate
Selection.Delete Shift:=xlUp
Columns("A:A").Select
Selection.TextToColumns Destination:=Range("A1"), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, _
Semicolon:=False, Comma:=True, Space:=False, Other:=False, FieldInfo _
:=Array(Array(1, 1), Array(2, 1), Array(3, 1), Array(4, 1)), TrailingMinusNumbers:= _
True
Selection.ColumnWidth = 10.86
Range("F7").Select
End Sub
请帮我复制并粘贴到另一张表格,谢谢
答案 0 :(得分:0)
您可以在功能中添加以下代码,以复制整个最后一行,并粘贴将其添加到另一张表强>
在我的代码中,我假设您的数据位于A列,因此我复制了 A 列不为空的最后一行。
如果您想更改它,请将(ws1.Rows.Count, 1)
中的 1 的值更改为数据所在列的编号(例如(ws1.Rows.Count, 4)
,如果您的数据在列 D 中,因为它是第4列。)
'Variable for the destination
Dim destinationRow As Integer
'Row in the second sheet where it will be paste
destinationRow = 5
'Copy th last row in your first sheet
ws1.Rows(ws1.Cells(ws1.Rows.Count, 1).End(xlUp).Row - 1).EntireRow.Copy
'Paste it in the second sheet
ws2.Rows(destinationRow).PasteSpecial
将destinationRow = 5
中 5 的值更改为目标行(第二张表中要粘贴的行)。
例如
destinationRow = 7
将其粘贴到第二张表格的第7行或destinationRow = 6
将其粘贴到第二张表格中的第6行。