Moving data in sheet depending on contents of a cell
Closed
joee74
Blocked Profile - Oct 28, 2015 at 04:53 PM
- Posts
- 1
- Registration date
- Wednesday October 28, 2015
- Status
- Member
- Last seen
- October 28, 2015
Blocked Profile - Oct 28, 2015 at 04:53 PM
Related:
- Moving data in sheet depending on contents of a cell
- Moving data from one excel sheet to another - Guide
- Cut &past data from sheet to shhet depending ✓ - Forum - Excel
- How to automatically transfer data between sheets in Excel - Guide
- Copy data onto sheet only if cell has text ✓ - Forum - Excel
- Automatically moving data ✓ - Forum - Excel
1 reply
OK, post some code on what you are stuck with! We can help on stuck, we cannot provide turn key solutions. I always encourage newer users to record a macro, and reverse engineer the macro to custom fit your needs. Like so:
Let us know if you need help.
Rows("7:7").Select
Selection.Copy
Application.CutCopyMode = False
Selection.Cut
Sheets("DISPATCHED").Select
Rows("7:7").Select
ActiveSheet.Paste
Let us know if you need help.