Copy and Paste work but not Cut and Paste in vba

ayk.wong

New Member
Joined
Nov 7, 2012
Messages
1
Hi,

I am new to vba programming. I have written the following codes. The codes work for Copy and paste, but when I change to Cut and paste, it won't work. I am trying to cut a row on one spreadsheet, and paste the row in another spreadsheet. I can't figure this out. Can someone help me? Thanks


Do While celltxt <> ""
' MsgBox "Celltext =" & celltxt
Set MembersReport = ActiveWorkbook
ActiveWorkbook.Worksheets(1).Activate
ActiveWorkbook.Worksheets(1).Cells(r, "B").EntireRow.Select
Selection.Copy
Workbooks(ProgramReport.Name).Activate
ActiveWorkbook.Worksheets(2).Select
lastRowinProgReportTab2 = ActiveWorkbook.Worksheets(2).Range("B" & Rows.Count).End(xlUp).Row
'Rows(lastRowinProgReportTab2 + 1).Select
ActiveWorkbook.Worksheets(2).Cells(lastRowinProgReportTab2 + 1, "A").Select
ActiveSheet.Paste
r = r + 1
Workbooks(MembersReport.Name).Activate
ActiveWorkbook.Worksheets(1).Activate
celltxt = Cells(r, "B").Value
Cells(r, "B").Select
Loop
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)

Forum statistics

Threads
1,214,901
Messages
6,122,157
Members
449,068
Latest member
shiz11713

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