+ Reply to Thread
Results 1 to 4 of 4

Update a worksheet based on other worksheets

Hybrid View

  1. #1
    Registered User
    Join Date
    08-02-2012
    Location
    Indianapolis, IN
    MS-Off Ver
    2007
    Posts
    68

    Question Update a worksheet based on other worksheets

    Doe,John.xlsxSTAFF LIST.xlsm

    I need to update the Staff List based on the info in the workbooks with an employee for a file name. In the staff list, I want to end up with the employee name in column A followed by the info in cells K5, L5, M5, and N5 from the workbook with employee name for the file name. I want to do this for every employee workbook in the folder. Using the VBA macro in the attached Staff List, I end up with too many columns in my results. Please correct my VBA macro to give me only desired results.
    Last edited by gibson2503; 07-25-2013 at 03:49 PM. Reason: Solved

  2. #2
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Update a worksheet based on other worksheets

    Hi gibson2503

    Look at this
    Option Explicit
    
    Sub ImpData()
        Dim Wb As Workbook
        Dim sFile As String
        Dim sPath As String
        Dim sName As String
        Dim i As Integer
        Dim j As Integer
    
        Application.ScreenUpdating = False
        Application.DisplayAlerts = False
        Range("A1") = "Staff name"
    
        sPath = "S:\PAYROLL\Quimby and Adams\Tracking Spreadsheets\PP 13-12 TO 13-14\HYBRID F\ACTIVE\"
        sFile = Dir(sPath & "*.xlsx")
        Do While sFile <> ""
            Set Wb = Workbooks.Open(sPath & sFile)
            sName = Mid(sFile, 1, Len(sFile) - 5)
            Sheets(1).Activate
            Range("K5:N5").Copy
            Windows("STAFF LIST.xlsm").Activate
            Range("B" & Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial Paste:=xlPasteValues
            Wb.Activate
            Windows("STAFF LIST.xlsm").Activate
            
            '##### This line of Code is pasting the same Data a second time
            Range("F" & Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial Paste:=xlPasteValues
            '#################################
            
            Range("A" & Rows.Count).End(xlUp).Offset(1, 0).Value = sName
            Wb.Close SaveChanges:=False
            sFile = Dir
        Loop
        Application.DisplayAlerts = True
        Application.ScreenUpdating = True
    
    
    End Sub
    John

    If you have issues with Code I've provided, I appreciate your feedback.

    In the event Code provided resolves your issue, please mark your Thread as SOLVED.

    If you're satisfied by any members response to your issue please use the star icon at the lower left of their post.

  3. #3
    Registered User
    Join Date
    08-02-2012
    Location
    Indianapolis, IN
    MS-Off Ver
    2007
    Posts
    68

    Re: Update a worksheet based on other worksheets

    Quote Originally Posted by jaslake View Post
    Hi gibson2503

    Look at this
    Option Explicit
    
    Sub ImpData()
        Dim Wb As Workbook
        Dim sFile As String
        Dim sPath As String
        Dim sName As String
        Dim i As Integer
        Dim j As Integer
    
        Application.ScreenUpdating = False
        Application.DisplayAlerts = False
        Range("A1") = "Staff name"
    
        sPath = "S:\PAYROLL\Quimby and Adams\Tracking Spreadsheets\PP 13-12 TO 13-14\HYBRID F\ACTIVE\"
        sFile = Dir(sPath & "*.xlsx")
        Do While sFile <> ""
            Set Wb = Workbooks.Open(sPath & sFile)
            sName = Mid(sFile, 1, Len(sFile) - 5)
            Sheets(1).Activate
            Range("K5:N5").Copy
            Windows("STAFF LIST.xlsm").Activate
            Range("B" & Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial Paste:=xlPasteValues
            Wb.Activate
            Windows("STAFF LIST.xlsm").Activate
            
            '##### This line of Code is pasting the same Data a second time
            Range("F" & Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial Paste:=xlPasteValues
            '#################################
            
            Range("A" & Rows.Count).End(xlUp).Offset(1, 0).Value = sName
            Wb.Close SaveChanges:=False
            sFile = Dir
        Loop
        Application.DisplayAlerts = True
        Application.ScreenUpdating = True
    
    
    End Sub
    So, I took out that line between the #'s you mentioned and it turned out perfect. Thanks.

  4. #4
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Update a worksheet based on other worksheets

    Hi gibson2503

    You're welcome...glad I could help.

    If this resolves your issue please mark your Thread as SOLVED.

    New quick method:
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

    Or you can use this way:
    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save

+ 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: 3
    Last Post: 07-20-2013, 11:42 AM
  2. [SOLVED] Update one worksheet if certain cells on other worksheets (many) are changed
    By rls231 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-02-2013, 04:17 PM
  3. Replies: 2
    Last Post: 04-30-2013, 08:09 AM
  4. Update cell based on conditions in other worksheets
    By wpryan in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-27-2010, 11:14 PM
  5. How to Update the Worksheets field value based on updates done in Main Worksheet.
    By arunsinghpundir in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 10-10-2007, 07:44 AM

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