VBA if cell value>0 copy this row & insert row under

dstramilov

New Member
Joined
Oct 10, 2014
Messages
7
I need to create VBA that will insert & copy current row if value in column D>0 & do this all the the way to the end.
I need VBA that will work as VLOOKUP but for multilines. Let's say A7="Paris" Sheet1. I need to copy a all values (if A7="Paris") from sheet2 column B, C, D etc.
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Hello,

here is code for the first part

Code:
Sub COPY_CURRENT_ROW()
    Application.ScreenUpdating = False
    For MY_ROWS = ActiveSheet.UsedRange.Rows.Count To 1 Step -1
        If Range("D" & MY_ROWS).Value > 0 Then
            Rows(MY_ROWS).Copy
                Rows(MY_ROWS + 1).Insert
        End If
    Next MY_ROWS
    Application.CutCopyMode = False
    Application.ScreenUpdating = True
End Sub

does this work as expected?

Don't quite understand your second question.
 
Upvote 0
Thank you, It worked perfectly!

For second question:
Sheet1:
A2 = "Piter Pen"

Sheet2 I got 1000 rows of data with 5-8 column.
I need to copy all rows from sheet2 to sheet 1 column B:F, if value in column A sheet 2 = "Piter Pen", paste data to sheet1 B2 & down/right all the way.
It is type of vlookup function, but vlookup can't copy multilines for the same value.
 
Upvote 0
Hello,

does this work as expected?

Code:
Sub COPY_CURRENT_ROW()
    Application.ScreenUpdating = False
    For MY_ROWS = 2 To Sheets("Sheet2").UsedRange.Rows.Count
        With Sheets("Sheet2")
        If .Range("A" & MY_ROWS).Value = "Piter Pen" Then
            .Range("B" & MY_ROWS & ":F" & MY_ROWS).Copy
                Sheets("Sheet1").Range("B" & Sheets("Sheet2").Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial (xlValues)
        End If
        End With
    Next MY_ROWS
    Application.CutCopyMode = False
    Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,558
Messages
6,125,504
Members
449,235
Latest member
Terra0013

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