VBA Next Row Copy and Paste

jamescooper

Well-known Member
Joined
Sep 8, 2014
Messages
834
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

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
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,214,808
Messages
6,121,681
Members
449,048
Latest member
81jamesacct

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