Hey everyone,
I'm new to VBA and trying to work out how to cut a row based on a single cells value and move it to the last row on the same worksheet. I'm also curious if this will cause some strange looping problem since that information would all be kept on one worksheet. No idea there.
I'm running Excel 2016 on a Microsoft 10 Pro.
Currently the information is presented as follows:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Last Name[/TD]
[TD]First Name[/TD]
[TD]Availability[/TD]
[TD]Stage Complete[/TD]
[TD]Location[/TD]
[/TR]
[TR]
[TD]Smith[/TD]
[TD]John[/TD]
[TD]Summer[/TD]
[TD]First Interview[/TD]
[TD]Los Angeles[/TD]
[/TR]
[TR]
[TD]Doe[/TD]
[TD]Jane[/TD]
[TD]Summer[/TD]
[TD]Archive[/TD]
[TD]Los Angeles[/TD]
[/TR]
</tbody>[/TABLE]
When the stage completed in row "D" becomes "Archive", I'd like there to be a button to move all the "Archive" rows to move to the bottom of the worksheet. Also to delete the row that it just left so there aren't gaps.
I keep finding all the individual components in other threads, and tried putting the code together from those, but couldn't get anything to work. Any guidance is very appreciated!
I'm new to VBA and trying to work out how to cut a row based on a single cells value and move it to the last row on the same worksheet. I'm also curious if this will cause some strange looping problem since that information would all be kept on one worksheet. No idea there.
I'm running Excel 2016 on a Microsoft 10 Pro.
Currently the information is presented as follows:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Last Name[/TD]
[TD]First Name[/TD]
[TD]Availability[/TD]
[TD]Stage Complete[/TD]
[TD]Location[/TD]
[/TR]
[TR]
[TD]Smith[/TD]
[TD]John[/TD]
[TD]Summer[/TD]
[TD]First Interview[/TD]
[TD]Los Angeles[/TD]
[/TR]
[TR]
[TD]Doe[/TD]
[TD]Jane[/TD]
[TD]Summer[/TD]
[TD]Archive[/TD]
[TD]Los Angeles[/TD]
[/TR]
</tbody>[/TABLE]
When the stage completed in row "D" becomes "Archive", I'd like there to be a button to move all the "Archive" rows to move to the bottom of the worksheet. Also to delete the row that it just left so there aren't gaps.
I keep finding all the individual components in other threads, and tried putting the code together from those, but couldn't get anything to work. Any guidance is very appreciated!