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

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
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,225,754
Messages
6,186,825
Members
453,377
Latest member
JoyousOne

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