VBA Next Row Copy and Paste

jamescooper

Well-known Member
Joined
Sep 8, 2014
Messages
840
Trying to copy data to another sheet upon H1 = Suspended, any ideas what I am doing wrong here?

Thanks.

Code:
Private Sub Worksheet_Calculate()


NextDataRow = Sheets("Data").Range("B" & Rows.Count).End(xlUp).Row + 1


If Range("H1") = "Suspended" Then
Range("AG1:BC1000").Copy Worksheets("Data").Range("B:X" & NextDataRow)


End If


End Sub
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Maybe:
Code:
Private Sub Worksheet_Calculate()
    If Range("H1") = "Suspended" Then
        Range("AG1:BC1000").Copy Sheets("Data").Cells(Sheets("Data").Rows.Count, "B").End(xlUp).Offset(1, 0)
    End If
End Sub
 
Upvote 0
Thanks that worked, although it keeps pasting multiple times! I only want it to do it once!

Any ideas?

Thanks.
 
Upvote 0
Does this help
Code:
Private Sub Worksheet_Calculate()
    If Range("H1") = "Suspended" Then
        Application.Calculation = xlCalculationManual
        Range("AG1:BC1000").Copy Sheets("Data").Cells(Sheets("Data").Rows.Count, "B").End(xlUp).Offset(1, 0)
        Application.Calculation = xlCalculationAutomatic
    End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,326
Members
452,635
Latest member
laura12345

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