MrExcel Episode 1903

korndoll

New Member
Joined
Aug 22, 2024
Messages
2
Office Version
  1. 365

‘How To Automatically Move Rows In Excel When Marked As Paid’​


Hi,

This ran flawlessly, however it does not delete the row in sheet 1, it essentially makes a copy of the row in sheet 2. I’d like to have more of a ‘move’ effect. Is there a way to modify it? I think it may have something to do with the highlighted piece

Thank you!
 

Attachments

  • IMG_8371.jpeg
    IMG_8371.jpeg
    246.5 KB · Views: 32

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).
Welcome to the Board!

If you want to delete the original row, try adding this block of code just before the first "End If" line:
VBA Code:
    Application.EnableEvents = False
    Rows(FR).Delete
    Application.EnableEvents = True
 
Upvote 0
Solution
Welcome to the Board!

If you want to delete the original row, try adding this block of code just before the first "End If" line:
VBA Code:
    Application.EnableEvents = False
    Rows(FR).Delete
    Application.EnableEvents = True
Thank you so much Joe4!!!
 
Upvote 0
You are welcome.
Glad I was able to help!
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,175
Members
453,021
Latest member
Justyna P

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