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
- How to copy data from one excel sheet to another - Guide
- Windows network commands cheat sheet - Guide
- Tmobile data check - Guide
- Excel move data from one sheet to another - Guide
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.
