Moving data in sheet depending on contents of a cell
Closed
joee74
Posts
1
Registration date
Wednesday October 28, 2015
Status
Member
Last seen
October 28, 2015
-
Oct 28, 2015 at 10:18 AM
Blocked Profile - Oct 28, 2015 at 04:53 PM
Blocked Profile - Oct 28, 2015 at 04:53 PM
Related:
- Moving data in sheet depending on contents of a cell
- Sheet right to left in google sheet - Guide
- Windows network commands cheat sheet - Guide
- Mark sheet in excel - Guide
- How to insert picture in word without moving text - Guide
- Call of duty: black ops – zombies downloadable content - Download - Shooters
1 response
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.