有什么方法可以单击并将某些列的某些值复制到其他工作表。
这张图片将解释更多:
这是我的代码,但它有一些我不知道为什么的错误:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Sheets("SheetB").Select
' Find the last row of data
FinalRow = Cells(Rows.Count, 1).End(xlUp).Row
' Loop through each row
For x = 1 To FinalRow
' Decide if to copy based on column A in sheetB
ThisValue = Cells(x, 1).Value
If ThisValue = Target.Value Then
Cells(x, 1).Resize(1, 33).Copy
Sheets("SheetC").Select
NextRow = Cells(Rows.Count, 1).End(xlUp).Row + 1
Cells(NextRow, 1).Select
ActiveSheet.Paste
Sheets("SheetB").Select
End If
Next x
End Sub