Forum Discussion
cak980
May 05, 2022Copper Contributor
Using VBA to move a range of data to a different sheet when complete (need the for dummies version)
I'm trying to setup a macro so that when a task is completed (indicated with X), it automatically gets moved to a separate tab and deleted from original location. I was able to accomplish this but i...
cak980
Jun 07, 2022Copper Contributor
HansVogelaar Now it's disappeared all together. Can I send it back to you?
HansVogelaar
Jun 07, 2022MVP
Sure, go ahead.
- cak980Jun 08, 2022Copper ContributorThank you!!!
- HansVogelaarJun 08, 2022MVP
Don't you mean "It starts at row 6 instead of 7 (first row)"?
If so, change the line
For s = m To 7 Step -1
to
For s = m To 6 Step -1
- cak980Jun 07, 2022Copper ContributorThank you! It starts at row 7 instead of 6 (first row). What's the edit to change that?
- HansVogelaarJun 07, 2022MVP
Here is the workbook with the original macro, I haven't check whether it needs to be updated.
To view the macro, press Alt+F11 to activate the Visual Basic Editor.