Results 1 to 6 of 6

Autopopulating multiple sheets from one main sheet

Threaded View

  1. #1
    Registered User
    Join Date
    11-27-2017
    Location
    London
    MS-Off Ver
    2016
    Posts
    3

    Autopopulating multiple sheets from one main sheet

    Hi,

    I am trying to create a spreadsheet that uses one Master sheet (called Master), and then populates other worksheets with the data from that main sheet. I want to use Column C 'Business Owner' as the data that determines which subsheet that row goes into. So, if I enter 'David' into Column C, I want all data from that row on the Master sheet to copy into the worksheet called 'David', and same for 'Veronica', 'Celeste' etc. This is a working document that will be updated by multiple users, so if any updates are made to the rows at any time, I want all of those updates to copy across to the corresponding subsheet whenever they are made. I'm currently using the below code, which works to some degree; it copies the row to the correct sheet when I enter a value in row C, but if I update the row in any other column, the updates don't copy across. Also, if I re-confirm the name in Column C, it adds a duplicate line in David's worksheet, rather than overwrite the changes.

    Private Sub Worksheet_Change(ByVal Target As Range)
    If Intersect(Target, Columns("C:C")) Is Nothing Then Exit Sub

    If Target.Value = "David" Then
    Range(Range("A" & Target.Row), Range("AU" & Target.Row)).Copy _
    Sheets("David").Range("A" & Rows.Count).End(xlUp).Offset(1, 0)

    I'm very new to Macros so any help would be much appreciated!

    Many thanks,

    Hayley
    Last edited by HayleyN; 11-27-2017 at 09:29 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 9
    Last Post: 11-06-2017, 09:27 AM
  2. Autopopulating multiple sheets in a workbook from one master sheet
    By aheffron in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 06-07-2017, 07:15 PM
  3. Replies: 2
    Last Post: 07-25-2016, 09:35 AM
  4. Matching Multiple sheets data to a main sheet
    By Ryan29 in forum Excel Formulas & Functions
    Replies: 12
    Last Post: 07-05-2016, 10:21 AM
  5. Populate data from one main sheet to multiple sheets
    By robi0342 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-23-2016, 10:16 PM
  6. Populate data from one main sheet to multiple sheets
    By robi0342 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-23-2016, 09:19 PM
  7. Populate data from one main sheet to multiple sheets
    By dfulmer in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 12-31-2012, 05:24 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1