Cut & paste the data to new sheet if condition matches

hdgfss

New Member
Joined
Aug 29, 2019
Messages
41
Hi Experts,

I am looking for a macro that will do the things mentioned below
macro will be placed in macro.xlsm,both files are located in different places so the path will be hardcoded in the macro so that i can change it as per my needs
sheet name can be anything
Plz see the sample file & the output file


If column B of sheet2 of book2.xlsx matches with column I of 1.xls then cut that entire row & paste it to new sheet in 1.xls(Plz name the new sheet as output1)
(header will be same in new sheet also)

& If Book2.xlsx has a blank sheet2 then dont do anything


Thnx For the Help




 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Try this. You must fit the folder names, file names, and sheet names.

VBA Code:
Sub cut_paste()
  Dim wb1 As Workbook, wb2 As Workbook
  Dim sh1 As Worksheet, sh2 As Worksheet
  Dim lr1 As Long
  Dim rng As Range, c As Range, f As Range
  
  Application.ScreenUpdating = False
  Set wb1 = Workbooks.Open("C:\books\1.xls")
  Set wb2 = Workbooks.Open("C:\books\Book2.xlsx")
  
  Set sh1 = wb1.Sheets(1)
  Set sh2 = wb2.Sheets("Sheet2")
  
  lr1 = sh1.Cells.Find("*", , xlValues, xlPart, xlByRows, xlPrevious).Row + 1
  Set rng = sh1.Range("A" & lr1)
  
  For Each c In sh2.Range("B2", sh2.Range("B" & Rows.Count).End(3))
    Set f = sh1.Range("I:I").Find(c, , xlValues, xlWhole)
    If Not f Is Nothing Then
      Set rng = Union(rng, sh1.Range("A" & f.Row))
    End If
  Next
  
  If rng.Count > 1 Then
    wb1.Sheets.Add(After:=wb1.Sheets(wb1.Sheets.Count)).Name = "Output1"
    sh1.Rows(1).Copy wb1.Sheets("Output1").Range("A1")
    rng.EntireRow.Copy wb1.Sheets("Output1").Range("A2")
    rng.EntireRow.Delete
  End If
  
  wb1.Close True
  wb2.Close False
End Sub
 
Upvote 0
Im glad to help you, thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,648
Messages
6,120,725
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top