+ Reply to Thread
Results 1 to 5 of 5

Form Extractor Issue

Hybrid View

Ravenous Form Extractor Issue 08-12-2013, 12:06 AM
humdingaling Re: Form Extractor Issue 08-12-2013, 02:27 AM
humdingaling Re: Form Extractor Issue 08-12-2013, 02:31 AM
Ravenous Re: Form Extractor Issue 08-12-2013, 02:59 AM
humdingaling Re: Form Extractor Issue 08-12-2013, 04:33 AM
  1. #1
    Forum Contributor
    Join Date
    12-30-2012
    Location
    Australia
    MS-Off Ver
    Excel 2010
    Posts
    103

    Form Extractor Issue

    Hi All,

    I have a Macro set up which allows me to extract data from various forms in a folder and paste this data into a single row of a log.
    The Macro works great but there is just one problem; I have a cell in my form template for Customer Number which may or may not return a value as some forms do not have a customer number. If this happens and then the next form does have a number then the number will go into the last empty cell of the column because this is how the macro is set up but this means that the number will be in the incorrect row.

    In the attached example, Test (5) is returning the Customer Number value for Test (6).

    Can anyone please advise on how I can set this up to avoid this problem? My thoughts are to go down on the adjecent column and offset the result to the left but I don't know how to do this.

    Appreicate any assistance
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    08-12-2012
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    5,636

    Re: Form Extractor Issue

    set lrow outside of the loop
    you dont have to constantly reassign it

    increment lrow before loop ends

    Set Master = ThisWorkbook
        lrow = Master.Worksheets(3).Range("A" & Rows.Count).End(xlUp).Row
    
    Do
    
        Workbooks.Open (myPath & "\" & CurrentFileName)
        Set sourceBook = Workbooks(CurrentFileName)
        Set sourceData = sourceBook.Worksheets("Form Template")
        
            With sourceData
                .Range("D16").Copy
                Master.Worksheets(3).Range("A" & lrow + 1).PasteSpecial (xlPasteValues), Transpose:=True
            End With
            
            With sourceData
                .Range("D10").Copy
                Master.Worksheets(3).Range("B" & lrow + 1).PasteSpecial (xlPasteValues), Transpose:=True
            End With
            
            With sourceData
                .Range("D13").Copy
                Master.Worksheets(3).Range("C" & lrow + 1).PasteSpecial (xlPasteValues), Transpose:=True
            End With
        
    
            sourceBook.Close False
        lrow = lrow + 1
    If you are satisfied with the solution(s) provided, please mark your thread as Solved.
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

  3. #3
    Forum Expert
    Join Date
    08-12-2012
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    5,636

    Re: Form Extractor Issue

    also
    Set Master = ThisWorkbook
        lrow = Master.Worksheets(3).Range("A" & Rows.Count).End(xlUp).Row + 1
    
    Do
    
        Workbooks.Open (myPath & "\" & CurrentFileName)
        Set sourceBook = Workbooks(CurrentFileName)
        Set sourceData = sourceBook.Worksheets("Form Template")
        
            With sourceData
                .Range("D16").Copy
                Master.Worksheets(3).Range("A" & lrow).PasteSpecial (xlPasteValues), Transpose:=True
                .Range("D10").Copy
                Master.Worksheets(3).Range("B" & lrow).PasteSpecial (xlPasteValues), Transpose:=True
                .Range("D13").Copy
                Master.Worksheets(3).Range("C" & lrow).PasteSpecial (xlPasteValues), Transpose:=True
            End With
    
            sourceBook.Close False
        
        lrow = lrow + 1
        
    'Calling DIR w/o argument finds the next .xlsx file within the current directory.
    CurrentFileName = Dir()
    Loop While CurrentFileName <> ""
    you dont need to "with" every section of sourcedata
    also you dont need to +1 every lrow line just do it once in the beginning
    Last edited by humdingaling; 08-12-2013 at 02:34 AM.

  4. #4
    Forum Contributor
    Join Date
    12-30-2012
    Location
    Australia
    MS-Off Ver
    Excel 2010
    Posts
    103

    Re: Form Extractor Issue

    Legend! Works perfect and much cleaner, thanks for your help.

  5. #5
    Forum Expert
    Join Date
    08-12-2012
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    5,636

    Re: Form Extractor Issue

    not a problem thanks for the rep

+ 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. Use Excel as Mobile Web Directory Extractor
    By it_electronics2000 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-09-2012, 08:53 AM
  2. line item extractor
    By bholabhala in forum Excel General
    Replies: 29
    Last Post: 09-18-2010, 11:59 AM
  3. Desire Versatile Alphanumeric Extractor From Any String
    By bxc2739 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 07-25-2007, 04:12 PM
  4. [SOLVED] Best extractor of rows and columns from a PDF to Excel
    By Cary in forum Excel General
    Replies: 0
    Last Post: 04-07-2006, 10:30 AM
  5. Strange issue freezing parent form when unloading a child form
    By Stefano Gatto in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 11-11-2005, 12:45 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