+ Reply to Thread
Results 1 to 3 of 3

Import data from source to target

Hybrid View

  1. #1
    Registered User
    Join Date
    04-10-2012
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    3

    Import data from source to target

    Hello All,
    My Goal is to import data from another workbook (Source) to Active Workbook (Target) while reading through all the "filtered" data on the Source Workbook (Row 13 and beyond to say 5000 rows max) while only importing the Product # (column A on both sheets) and the ordered Qty from the Source Sheet (Column M) to Ordered Qty on the Target (Column D). I've got a limit of occurrences that can occur on the Target Workbook of 501 possible lines of items that can be ordered. Max should be around 300 but, 501 is a safe range for future. Initially everything worked great and brought everything across throughout the entire range of 501 but, it even brought the filtered out blanks data as well (which is what it was spose to do). I need to read through each Product and Qty Ordered from the Source Workbook while skipping that row and going to next if the Ordered Qty is "" (blank)....and most likely filtered not to show. My initial code above does not take into account possible filtered blanks rows in between the ones I tested and I thought of that as I was typing this response so, I'd need to add that in as well. I'm having current issues where noted Error and ****** to note it.
    TIA, khleisure


     
    Private Sub ImportExternalDataToOrderForm_Click()
    '*******Exit Sub - Used to disable command button till sub written/executes properly
         ' Get customer workbook...
    Dim customerBook As Workbook
    Dim filter As String
    Dim caption As String
    Dim customerFilename As String
    Dim customerWorkbook As Workbook
    Dim targetWorkbook As Workbook
     
    
         ' Active workbook is the Target Workbook
    Set targetWorkbook = Application.ActiveWorkbook
     
         ' get the customer workbook to use as Source WorkBook
    filter = "XLS files (*.xls),*.xls"
    caption = "Please Select an input file "
    customerFilename = Application.GetOpenFilename(filter, , caption)
     
    Set customerWorkbook = Application.Workbooks.Open(customerFilename)
     
         ' Ranges vary in Source Workbook to Target Workbook but, applicable data to import to Order Form
         'Import data from customer(source) to target workbook(active Order Form)
    Dim targetSheet As Worksheet
    Set targetSheet = targetWorkbook.Worksheets(2)
    Dim sourceSheet As Worksheet
    Set sourceSheet = customerWorkbook.Worksheets(1)
     
    targetSheet.Range("B4").Value = sourceSheet.Range("C2").Value ' Works Great
    targetSheet.Range("B9").Value = sourceSheet.Range("C8").Value ' Works Great
    targetSheet.Range("G9").Value = sourceSheet.Range("C9").Value 'Works Great
    targetSheet.Range("N4:N6").Value = sourceSheet.Range("N2:N4").Value ' Works Great
    targetSheet.Range("J18:J20").Value = sourceSheet.Range("K7:K9").Value ' Works Great
     
         ' Below 2 lines work great however, the Source Workbook is filtered to eliminate
         ' blank lines and the 2 lines of code below bring over everything in the overall range
         ' of 501 lines regardless if it's filtered or not.  Blank Qty fields that have
         ' been filtered should not be imported.  Max lines to import is defined by range
         ' of 501 max
     
         'below xfers the Part Number from A column range of Source to A column Range of Target
    'targetSheet.Range("A27:A527").Value = sourceSheet.Range("A13:A513").Value ' Do what their spose to
         'below xfers the Ordered Qty from M column range of Source to D column Range of Target
    'targetSheet.Range("D27:D527").Value = sourceSheet.Range("M13:M513").Value ' Do what their spose to
         '*****
         'Need loop to read through each row and import Source Range "A" to Target Range "A" along with
         'associated Source Range "M" to Target Range "D".  Max 501 lines
     
         '*****
         ' Need to use loop for Part Number and associated Order Qty
    Dim t As Long
    Dim s As Long
    Dim i As Long
    '*****
     
    t = 27     ' row number on target where Product # (Col A) and Order Qty (Col D) start
    s = 13     ' row number on Source where Product # (Col A) and Order Qty (Col M) start
    i = 1        ' set counter for total of 501 potential import occurrences Max
                  ' Need to establish reading potential Source rows (filtered or not) at 5000 max rows (most likely range of 3500)
                  ' for most factories and their offerings.  (Have not established this portion yet)
     
    For i = 1 To 501 Step 1
       If sourceSheet.Range("M(s)").Value = "" Then ' Error Here ****************
                                                     'Method 'Range' of object '_Worksheet' failed
         Next i
         Exit Sub
       Else
         targetSheet.Range("A(t)").Value = sourceSheet.Range("A(s)").Value ' xfer Part #
         targetSheet.Range("D(t)").Value = sourceSheet.Range("M(s)").Value ' xfer Order Qty
       End If
       t = t + 1
       s = s + 1
    Next i
     
        ' Close Customer(Source) workbook[/COLOR]
    customerWorkbook.Close
     
    End Sub
    Last edited by khleisure; 05-23-2012 at 04:09 PM.

  2. #2
    Registered User
    Join Date
    04-10-2012
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    3

    Re: Import data from source to target

    Well, I think I solved my own riddle and really not surprised I did not get any responses here as I'm sure I was too wordy above and not clear what I wanted to really accomplish however, thus far, the below code does what I want it too and still testing a few mock scenario's. I tried to use a varied range for the Source Workbook by row counting the source but, kept getting the error noted and left in the code along with the code lines I left as comments where the error was occurring. If anyone can help solve the line where the error occurred, the overall loop should work for a varied range of Source Workbooks while still maintaining my 501 import limit however, thus far, I've set the limit on the Source data to be read at 3000 lines. I will probably increase that to 5000 pending the largest product file from the factories I'm currently using. I know one is a doozie but, cant remember how many total products currently? Feel free to comment as I'm sure there's much quicker/simpler ways to do what it is I did below?
    TIA, khleisure

    Code that seems to be working thus far is below and modification of above for what I wanted it to do.

    
    Private Sub ImportExternalDataToOrderForm_Click()
    '*******Exit Sub - Used to disable command button till sub written
    ' Get customer workbook...
    Dim customerBook As Workbook
    Dim filter As String
    Dim caption As String
    Dim customerFilename As String
    Dim customerWorkbook As Workbook
    Dim targetWorkbook As Workbook
    
     
    ' Active workbook is the Target Workbook
    Set targetWorkbook = Application.ActiveWorkbook
     
    ' get the customer workbook to use as Source WorkBook
    filter = "XLS files (*.xls),*.xls"
    caption = "Please Select an input file "
    customerFilename = Application.GetOpenFilename(filter, , caption)
     
    Set customerWorkbook = Application.Workbooks.Open(customerFilename)
     
    ' Ranges vary in Source Workbook to Target Workbook but, applicable data to import to Order Form
    ' Import data from customer(source) to target workbook(active Order Form)
    Dim targetSheet As Worksheet
    Set targetSheet = targetWorkbook.Worksheets(2)
    Dim sourceSheet As Worksheet
    Set sourceSheet = customerWorkbook.Worksheets(1)
    
    targetSheet.Range("B4").Value = sourceSheet.Range("C2").Value ' Works Great
    targetSheet.Range("B9").Value = sourceSheet.Range("C8").Value ' Works Great
    targetSheet.Range("G9").Value = sourceSheet.Range("C9").Value 'Works Great
    targetSheet.Range("N4:N6").Value = sourceSheet.Range("N2:N4").Value ' Works Great
    targetSheet.Range("J18:J20").Value = sourceSheet.Range("K7:K9").Value ' Works Great
    
         ' below 2 lines work for fixed range and every line regardless if filtered
         ' and regardless if Order Qty is blank
    'targetSheet.Range("A27:A527").Value = sourceSheet.Range("A13:A513").Value
    'targetSheet.Range("D27:D527").Value = sourceSheet.Range("M13:M513").Value
    
    '***** LOOP THOUGH PRODUCT AND QTY ORDERED DATA FOR BALANCE OF IMPORT
    ' Need to Loop through all Rows of overall Source (Starting R#13) to account
    ' for filtered lines that exist between the lines that remain and have a qty
    ' in the Order Qty Field (Col M).  If Qty Ordered Blank (filtered) you pass up
    ' the import of Source A & M to Target A & D and move to next.  If Qty Ordered from
    ' Source has a Qty entered, you drop through to import accordingly from Source to
    ' to Target.  Set Currently at Max Source of Range A13:A3000 (Can increase if
    ' necessary.  Also, counter to limit the number of imports to max 501 per Order
    ' Form's limit of lines currently.  Have to modify Order Form and loop below if more
    
    Dim t As Long
    Dim s As Long
    Dim r As Long
    'Dim rcount As Long (removed due to error below)
    '*****
    
    t = 27 ' Target Starting Row to accept imported data
    s = 13 ' Source Starting Row to begin import consideration
    r = 13 ' Define Start counter in For/Next below
           ' with Max set to 3000 potential rows currently (can increase if necessary)
    
    'rcount = Workbook(sourceSheet).Cells(RowCount, "a").End(xlUp).Row ' error here
    'rcount = customerWorkbook.Worksheets(1).Cells(RowCount, "a").End(xlUp).Row
          'Above Line creates Error 1004 Application-defined or Object-defined Error
          
    ' For r = r to rcount Step 1 (removed because of above error)
    
    For r = r To 3000 Step 1
    
        If t <= 527 Then ' 501 max occurrences that can import data "t" starts at 27
        
           If sourceSheet.Range("M" & s).Value = "" Then
           
                If r = 3000 Then
                  customerWorkbook.Close
                  Exit Sub
                End If
                
             s = s + 1
             
           Else
           
             targetSheet.Range("A" & t).Value = sourceSheet.Range("A" & s).Value
             targetSheet.Range("D" & t).Value = sourceSheet.Range("M" & s).Value
             t = t + 1
             s = s + 1
             
           End If
           
        Else
           customerWorkbook.Close
           Exit Sub
           
        End If
           
    Next r
        
    
    ' Close customer workbook
    customerWorkbook.Close
    
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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