+ Reply to Thread
Results 1 to 5 of 5

Excel, transfer data from Master Sheet to sub sheets, using key word from column

Hybrid View

anvqui Excel, transfer data from... 06-16-2015, 12:47 PM
JieJenn Re: Excel, transfer data from... 06-16-2015, 12:48 PM
anvqui Re: Excel, transfer data from... 06-16-2015, 01:11 PM
anvqui Re: Excel, transfer data from... 06-16-2015, 02:27 PM
JieJenn Re: Excel, transfer data from... 06-16-2015, 02:35 PM
  1. #1
    Registered User
    Join Date
    06-16-2015
    Location
    San Francisco, CA
    MS-Off Ver
    365
    Posts
    4

    Excel, transfer data from Master Sheet to sub sheets, using key word from column

    Good Morning to All,

    I am seeking assistance regarding transfer of data from sheet 1 (master list) to other sheets in the workbook.

    Sheet 1: Master Inventory List

    1. Column A through Column R, with headers.
    2. Column F is focal point of sorting by category, ie; computer, laptop, printer, scanner, digital sender, unknown.

    What I would like to do is pull data from the master list, using key words "Computer or any of the sorted data" from column F. Transfer that data along with column A through Column R from each ROW to a new sheet, labeled after the sorted Data from column F

    Thank you,

  2. #2
    Forum Expert
    Join Date
    12-15-2009
    Location
    Chicago, IL
    MS-Off Ver
    Microsoft Office 365
    Posts
    3,177

    Re: Excel, transfer data from Master Sheet to sub sheets, using key word from column

    Can you post a sample file?

  3. #3
    Registered User
    Join Date
    06-16-2015
    Location
    San Francisco, CA
    MS-Off Ver
    365
    Posts
    4

    Re: Excel, transfer data from Master Sheet to sub sheets, using key word from column

    Thank you for your assistance, I currently deleting sensitive data, and I will provided a sample sheet for your review within the hour.

    A
    Last edited by anvqui; 06-16-2015 at 01:13 PM.

  4. #4
    Registered User
    Join Date
    06-16-2015
    Location
    San Francisco, CA
    MS-Off Ver
    365
    Posts
    4

    Re: Excel, transfer data from Master Sheet to sub sheets, using key word from column

    I am a first time user, posting on a forum based site. Please forgive if I am adding the attachment wrong. I have attached an excel file, that contains the basic information of columns and rows, and data that I need transferred to the sub sheets in the workbook.

    Sincerely,
    Attached Files Attached Files

  5. #5
    Forum Expert
    Join Date
    12-15-2009
    Location
    Chicago, IL
    MS-Off Ver
    Microsoft Office 365
    Posts
    3,177

    Re: Excel, transfer data from Master Sheet to sub sheets, using key word from column

    I deleted your column A. But the macro would probably looks like this based on the file you provided

    Sub MoveData()
    Dim wsMaster As Worksheet, ws As Worksheet
    Dim LR As Long
    
    Set wsMaster = ThisWorkbook.Worksheets("Master Inventory List")
    
    For Each ws In ThisWorkbook.Worksheets
        If ws.Name <> wsMaster.Name Then
            With wsMaster
                .AutoFilterMode = False
                
                .Range("A1").AutoFilter 4, ws.Name
                
                LR = .Cells(Rows.Count, 4).End(xlUp).Row
                
                '//Copy over if have record
                If LR > 1 Then
                    ws.Cells.Delete
                    .Range(.Cells(1, 1), .Cells(LR, "Q")).Copy ws.Range("A1")
                End If
                
                .AutoFilterMode = False
            End With
        End If
    Next ws
    
    End Sub
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 1
    Last Post: 06-16-2015, 12:43 PM
  2. [SOLVED] How to transfer entries from a master data sheet to sub sheets?
    By glosos in forum Excel General
    Replies: 4
    Last Post: 06-03-2014, 07:20 AM
  3. Replies: 6
    Last Post: 11-08-2013, 11:59 AM
  4. Macro to Transfer data from multiple sheets into rows on a master sheet
    By serrone in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-30-2013, 06:35 AM
  5. Transfer data from master sheet to different sheets.
    By liwle19 in forum Excel General
    Replies: 0
    Last Post: 04-12-2011, 12:55 PM

Tags for this Thread

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