簡體   English   中英

如何使用 VBA 宏從一張工作表中復制“特定”行並粘貼到另一個工作表中

[英]How to copy "specific" rows from one sheet and paste in to another in an excel using VBA Macros

我有兩張工作表(工作表 1 和工作表 2)。 Sheet1 是 sheet2 的子集。 我寫了一個宏來比較兩張表的標題,然后如果匹配,將所有內容從表 1 復制到表 2。下一個要求是,我在表 1 中有一個關鍵列,我現在需要粘貼表的內容1 到工作表 2、工作表 3、工作表 4 基於鍵列值。 請在附件中找到詳細的截圖,也請在 Stack-overflow 中找到我在你們的幫助下編寫的代碼。 我是新手,需要你的幫助。 圖片請點擊

代碼:

Private Sub CommandButton3_Click()

Application.ScreenUpdating = False

Dim lastrow As Long, header As Range, foundHeader As Range, lCol As Long, srcWS , desWS1 As Worksheet
Set srcWS = Sheets("Sheet1")
Set desWS1 = Sheets("Sheet2")

lastrow = srcWS.Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row

lCol = desWS1.Cells(1, Columns.count).End(xlToLeft).Column
For Each header In desWS1.Range(desWS1.Cells(1, 1), desWS1.Cells(1, lCol))
    Set foundHeader = srcWS.Rows(2).Find(header, LookIn:=xlValues, lookat:=xlWhole)
    If Not foundHeader Is Nothing Then
        srcWS.Range(srcWS.Cells(2, foundHeader.Column), srcWS.Cells(lastrow, foundHeader.Column)).Copy desWS1.Cells(1, header.Column)
    End If
Next header

lCol = desWS2.Cells(1, Columns.count).End(xlToLeft).Column
**' I am stuck here. Unable to think beyond these two lines after applying the filter**
**Sheets("Sheet1").Cells(1, 1).AutoFilter Field:=7, Criteria1:="Yellow"
Sheets("Sheet1").Cells(1, 1).SpecialCells(xlCellTypeVisible).Select**

    For Each header In desWS2.Range(desWS2.Cells(1, 1), desWS2.Cells(1, lCol))
        Set foundHeader = srcWS.Rows(2).Find(header, LookIn:=xlValues, lookat:=xlWhole)
        If Not foundHeader Is Nothing Then
            srcWS.Range(srcWS.Cells(2, foundHeader.Column), srcWS.Cells(lastrow, foundHeader.Column)).Copy desWS2.Cells(1, header.Column)
        End If
    Next header

Application.ScreenUpdating = True

End Sub

非常感謝您的時間和幫助。

不是我的工作所以甚至不會假裝,但你試過這個嗎?

學分: https : //www.excelcampus.com/vba/copy-paste-cells-vba-macros/

    Sub Range_Copy_Examples()
'Use the Range.Copy method for a simple copy/paste

    'The Range.Copy Method - Copy & Paste with 1 line
    Range("A1").Copy Range("C1")
    Range("A1:A3").Copy Range("D1:D3")
    Range("A1:A3").Copy Range("D1")
    
    'Range.Copy to other worksheets
    Worksheets("Sheet1").Range("A1").Copy Worksheets("Sheet2").Range("A1")
    
    'Range.Copy to other workbooks
    Workbooks("Book1.xlsx").Worksheets("Sheet1").Range("A1").Copy _
        Workbooks("Book2.xlsx").Worksheets("Sheet1").Range("A1")

End Sub


Sub Paste_Values_Examples()
'Set the cells' values equal to another to paste values

    'Set a cell's value equal to another cell's value
    Range("C1").Value = Range("A1").Value
    Range("D1:D3").Value = Range("A1:A3").Value
     
    'Set values between worksheets
    Worksheets("Sheet2").Range("A1").Value = Worksheets("Sheet1").Range("A1").Value
     
    'Set values between workbooks
    Workbooks("Book2.xlsx").Worksheets("Sheet1").Range("A1").Value = _
        Workbooks("Book1.xlsx").Worksheets("Sheet1").Range("A1").Value
        
End Sub

本質上,您嘗試進行 vlookup 聽起來像。 這個網站過去也幫助過我。

https://powerspreadsheets.com/excel-vba-vlookup/

VLookupResult = WorksheetFunction.vlookup(LookupValue, Worksheet.TableArray, ColumnIndex, False)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM