I am fairly new to loops in macros (and novice in macros in general) and am having trouble creating a macro to copy and paste information from one sheet to another. Here's the example- on Sheet1 of the workbook, I have:
Col A Col B Col C
A 124 Complete
B 27 Incomplete
C 58 Complete
D 11 Incomplete
E 223 Incomplete
Sheet 2 has the same type of information (same data structure) except it contains all items that have been completed in the past. The macro should look on sheet 1, find all of the rows that have "Complete" in column C, select the whole row, then paste it at the bottom of the data range in Sheet2 (do not overwrite existing data). The macro should then go back and delete any rows on Sheet1 that have "Complete" in column c. This way all complete items are stored in Sheet 2 and all incomplete items are in Sheet1 after the macro completes.
Any help or guidance on this is much appreciated. Thanks in advance!
Col A Col B Col C
A 124 Complete
B 27 Incomplete
C 58 Complete
D 11 Incomplete
E 223 Incomplete
Sheet 2 has the same type of information (same data structure) except it contains all items that have been completed in the past. The macro should look on sheet 1, find all of the rows that have "Complete" in column C, select the whole row, then paste it at the bottom of the data range in Sheet2 (do not overwrite existing data). The macro should then go back and delete any rows on Sheet1 that have "Complete" in column c. This way all complete items are stored in Sheet 2 and all incomplete items are in Sheet1 after the macro completes.
Any help or guidance on this is much appreciated. Thanks in advance!