+ Reply to Thread
Results 1 to 3 of 3

Copying data from one workbook to another based on condition

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    05-08-2009
    Location
    england
    MS-Off Ver
    Excel 2007
    Posts
    223

    Copying data from one workbook to another based on condition

    The following code works for copying data from one sheet to another in a workbook.

    I can't seem to alter it to allow the data to be copied from one workbook to another.

    Can someone please help me out?

    The active workbook is called "TotalAnimals"
    The target workbook is called "Pets"

    Dim sGROUP As String, rMyRng As Range, wBase As Worksheet, rTemp As Range, rPaste As Range
        sGROUP = "dogs"
        Set wBase = ActiveSheet
        Set rMyRng = Range("1:1")
        Sheets.Add , wBase
        ActiveSheet.Name = "TargetSheet"
            
        Set rPaste = Range("D1")
        Application.ScreenUpdating = False
        Do
        Set rMyRng = rMyRng.Find(sGROUP, rMyRng.Cells(1), , xlPart, xlByColumns, xlNext)
        If Not rTemp Is Nothing Then If rMyRng.Address = rTemp.Address Then Exit Do
        rMyRng.MergeArea.EntireColumn.Copy rPaste
        Set rTemp = rMyRng
        Set rPaste = Cells(1, Columns.Count).End(xlToLeft).Offset(, 1)
        Set rMyRng = wBase.Range(rMyRng, wBase.Cells(1, Columns.Count))
        Loop
        Rows("1:1").RowHeight = 15
        ActiveSheet.UsedRange.Columns.AutoFit
        Application.ScreenUpdating = True

  2. #2
    Forum Contributor
    Join Date
    05-08-2009
    Location
    england
    MS-Off Ver
    Excel 2007
    Posts
    223

    Re: Copying data from one workbook to another based on condition

    Ok so I've made some changes to this

    Dim sGROUP As String, rMyRng As Range, wBase As Worksheet, _
        rTemp As Range, rPaste As Range
        sGROUP = "dogs"
        Set wBase = ActiveSheet
        Set rMyRng = Range("1:1")
           
        Set rPaste = Workbooks("Pets").Sheets("Sheet1").Range("D1")
        Application.ScreenUpdating = False
        Do
        Set rMyRng = rMyRng.Find(sGROUP, rMyRng.Cells(1), , xlPart, _
        xlByColumns, xlNext)
        If Not rTemp Is Nothing Then If rMyRng.Address = rTemp.Address Then Exit Do
        rMyRng.MergeArea.EntireColumn.Copy rPaste
        Set rTemp = rMyRng
        Set rPaste = Cells(1, Columns.Count).End(xlToLeft).Offset(, 1)
        Set rMyRng = wBase.Range(rMyRng, wBase.Cells(1, Columns.Count))
        Loop
        Rows("1:1").RowHeight = 15
        ActiveSheet.UsedRange.Columns.AutoFit
        Application.ScreenUpdating = True
    But I'm getting Run Time Error '91' message
    Object variable or With block variable not set -> relating to the rMyRng.MergeArea line

    What's this all about?
    Last edited by AndyE; 08-01-2013 at 06:51 AM.

  3. #3
    Forum Contributor
    Join Date
    05-08-2009
    Location
    england
    MS-Off Ver
    Excel 2007
    Posts
    223

    Re: Copying data from one workbook to another based on condition

    Does anyone know why this isn't working?

+ 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. Macro help in copying data from multiple sheets to first Sheet of workbook based on condn
    By archies.gall in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-26-2013, 02:47 PM
  2. VBA for copying cell data from another cell, based on a condition
    By JTKEXCEL in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 04-20-2013, 06:07 PM
  3. [SOLVED] Copying data from external workbook into current workbook based on cell value
    By Brontosaurus in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 10-07-2012, 11:17 AM
  4. Replies: 2
    Last Post: 06-28-2012, 03:15 AM
  5. copying data from 1 sheet to another based on condition by VB Macro
    By kavya_2009 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-27-2011, 04:46 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