我想将所有值14-22(选择的第一行值)复制到vba / Excel中的新工作表。我怎么能这样做?
Sheets.Add(After:=Sheets(Sheets.Count)).Name = "vacation-results"
Set vacationSheet = Sheets("vacation-results")
答案 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