Auto-populate info. from master sheet to multiple sheets
Solved/Closed
                    
        
                    kvil
    
        
                    Posts
            
                
            11
                
                            Registration date
            Wednesday June 21, 2017
                            Status
            Member
                            Last seen
            July 19, 2017
            
                -
                            Updated on Jun 21, 2017 at 03:23 PM
                        
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Contributor Last seen December 27, 2022 - Sep 12, 2017 at 10:41 AM
        TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Contributor Last seen December 27, 2022 - Sep 12, 2017 at 10:41 AM
        Related:         
- How do you auto populate data from multiple sheets to a master?
- Master royale - Download - Strategy
- How to download multiple files from whatsapp web - WhatsApp Forum
- How to stop facebook from auto refreshing - Guide
- Google sheets right to left - Guide
- How to copy data from one excel sheet to another - Guide
5 responses
                
        
                    TrowaD
    
        
                    Posts
            
                
            2921
                
                            Registration date
            Sunday September 12, 2010
                            Status
            Contributor
                            Last seen
            December 27, 2022
            
            
                    555
    
    
                    
Jun 22, 2017 at 11:16 AM
    Jun 22, 2017 at 11:16 AM
                        
                    Hi Kvil,
I think you are in need of the following code:
To implement the code, right-click the master sheets tab and select View Code. Paste the code in the big white field that appears.
What does the code do? Whenever you confirm an entry in column Q of your master sheet, the entire row is copied and pasted to the first available row of the sheet (the sheet needs to exist) specified in column C of your master sheet.
Is that what you were after?
Best regards,
Trowa
 
                
                
            I think you are in need of the following code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Columns("Q")) Is Nothing Then Exit Sub
Target.EntireRow.Copy Sheets(Target.Offset(0, -14).Value).Range("A" & Rows.Count).End(xlUp).Offset(1, 0)
End Sub
To implement the code, right-click the master sheets tab and select View Code. Paste the code in the big white field that appears.
What does the code do? Whenever you confirm an entry in column Q of your master sheet, the entire row is copied and pasted to the first available row of the sheet (the sheet needs to exist) specified in column C of your master sheet.
Is that what you were after?
Best regards,
Trowa
 
        
    
    
        
    
    
    
Updated on Jun 22, 2017 at 08:45 PM
I pasted the code and did what you said, but it's not giving me anything. I have also saved my file as .xlsm. Any idea on what I might be doing wrong?
Updated on Jun 24, 2017 at 05:22 PM
Please disregard my previous reply. I was able to get it to work. However, when I went to update one of my cells in a row that had previously been entered, it added a duplicate row in the sponsor sheet rather than just overwriting it with the correct changes. Is there a way to do that instead of creating duplicate rows of the same project in the sponsor's sheet?