• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Move row from one sheet to another sheet

Nitesh Khot

Member
Hi..

I want to move entire row if status updated as "Completed" into another sheet i.e "Sheet2".

Every time if i update status then the entire should transfer from one sheet another.

How to do this using macro.

Thanks.
 
Worksheets("Sheet1").Rows("2:2").EntireRow.Cut
Worksheets("Sheet2").Rows("2:2").EntireRow.Insert
 
Back
Top