如何使用vba将第一行选择中的所有值复制到新工作表中?

时间:2017-06-21 11:23:26

标签: excel vba excel-vba

我想将所有值14-22(选择的第一行值)复制到vba / Excel中的新工作表。我怎么能这样做?

Sheets.Add(After:=Sheets(Sheets.Count)).Name = "vacation-results"
Set vacationSheet = Sheets("vacation-results")

enter image description here

1 个答案:

答案 0 :(得分:1)

如果确实需要使用选择,请尝试:

' Copy the first row of values (not the header)
Selection.Rows.Item(2).Copy 

' Paste our clipboard content into the newly formed sheet
vacationSheet.Range("A1").PasteSpecial