moving completed cells to the bottom of a spreadsheet

kat0520

New Member
Joined
Aug 5, 2014
Messages
2
I know there is probably a very simple macro for this but everything I keep trying is not working. I am using excel 2013 and am having difficulty recording a macro that will move rows of completed work to the bottom of my call tracker tracker spreadsheet. I have a list in column that we fill in once completed. Once I complete a task I'd like it's entire row B:J to move to the bottom. I know I am over thinking this but I can't get anything to work.
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Maybe:

Code:
Sub kat0520()
Range(Cells(ActiveCell.Row, "B"), Cells(ActiveCell.Row, "J")).Copy Sheets("call tracker tracker").Range("B" & Rows.count).End(3)(2)
Range(Cells(ActiveCell.Row, "B"), Cells(ActiveCell.Row, "J")).Delete
End Sub
 
Upvote 0
Hi Kat0520 - Just a thought. Rather than moving the completed rows, have you thought of just filtering on all those that are not complete, leaving just the ones you want to view? Sort can also do this if you mark the ones that are complete. Hope this helps.
 
Upvote 0
Hi Kat0520 - Just a thought. Rather than moving the completed rows, have you thought of just filtering on all those that are not complete, leaving just the ones you want to view? Sort can also do this if you mark the ones that are complete. Hope this helps.

Yes, but this spreadsheet is going to be used by multiple users and would like it to update automatically based on the information inputted in the spreadsheet.
 
Upvote 0

Forum statistics

Threads
1,223,246
Messages
6,170,988
Members
452,373
Latest member
TimReeks

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