+ Reply to Thread
Results 1 to 24 of 24

Object Variable Not Set

Hybrid View

  1. #1
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Object Variable Not Set - Problem

    Hello Mark,

    If you only need values to be copied then the quickest way is to use an array. The system performs a "block transfer" with arrays. That is. all the data is written at once and not a single element at a time. You can copy the range into a Variant variable without having to dimension the rows and columns to be used. This method only works with the Value of a range.
     'This example copied the range A1:C10 from "Sheet1" to "Sheet2" starting at A1.
    
      Dim arrData As Variant
      Dim Rng As Range
    
        Set Rng = Worksheets("Sheet1").Range("A1:C10")
        arrData = Rng.Value
    
        Worksheets("Sheet2").Range("A1").Value = arrData
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  2. #2
    Forum Contributor
    Join Date
    07-11-2009
    Location
    NYC,USA
    MS-Off Ver
    Excel 2007
    Posts
    135

    Re: Object Variable Not Set - Problem

    Hi Leith,

    With what you're suggesting,wouldn't
    the ranges being copied have to have identical layouts in order to facilitate this type of method? This method is employed with the other two sheets in this workbook.

    Regarding the CASH RECEIPTS sheet, which does not follow the same layout, is it possible to loop through the rngCash.values, store them in a temporay(?) array, then when the loop is finished, dump them into the YEARLY TOTALS sheet,much the same as dumping a block range?

    Regards
    Mark

  3. #3
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Object Variable Not Set - Problem

    Hello Mark,

    It sounds like the "CASH RECEIPTS" is a disparate (non contiguous) range of cells. You can loop through this range and then create a new range object of contiguous cells. It would help to see a sample of the data layout or your workbook.

  4. #4
    Forum Contributor
    Join Date
    07-11-2009
    Location
    NYC,USA
    MS-Off Ver
    Excel 2007
    Posts
    135

    Re: Object Variable Not Set - Problem

    Leith,

    Sorry about that. I had uploaded earlier in the thread.
    Here is the working version.
    There are two procedures - one for CASH RECEIPTS, the other for the two AMEX sheets.

    My goal is to incorporate both procedures to run with one call.

    Thanks for your time!

    Mark
    Attached Files Attached Files

  5. #5
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Object Variable Not Set - Problem

    Hello Mark,

    Thanks for the workbook. I need to restart my computer because there seems to be a problem with file converter. I have Excel 2003 and downloaded the file converter for Office 2007. But as usual, there seems to be a glitch or two.

  6. #6
    Forum Contributor
    Join Date
    07-11-2009
    Location
    NYC,USA
    MS-Off Ver
    Excel 2007
    Posts
    135

    Re: Object Variable Not Set - Problem

    HI Leith,

    I saved a copy in 2003.
    See if this is easier.

    Mark
    Attached Files Attached Files

  7. #7
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Object Variable Not Set - Problem

    Hello Mark,

    Thanks. I just got my system restarted and was able to convert the original file.

  8. #8
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Object Variable Not Set

    Hello Mark,

    Here is the revised macro and it has been added to the attached workbook.
    Sub JournalReceipts()
    
      Dim Area As Range
      Dim Cell As Range
      Dim Data(1 To 1, 1 To 7) As Variant
      Dim DstRng As Range
      Dim DstWks As Worksheet
      Dim I As Long
      Dim R As Long
      Dim RngEnd As Range
      Dim SrcRng As Range
      Dim SrcWks As Worksheet
      
        Set DstWks = Worksheets("Yearly Totals")
        Set SrcWks = Worksheets("Cash Receipts")
        
          Set SrcRng = ThisWorkbook.Names("Receipts").RefersToRange
          
          Set DstRng = DstWks.Range("B3:H3")
          Set RngEnd = DstWks.Cells(Rows.Count, DstRng.Column).End(xlUp)
          Set DstRng = IIf(RngEnd.Row < DstRng.Row, DstRng, RngEnd.Offset(1, 0))
          
          Data(1, 2) = "Cash"
          Data(1, 3) = "   ----------"
          Data(1, 5) = "   ---"
          Data(1, 7) = "   ---"
          
          For Each Area In SrcRng.Areas
            Data(1, 1) = Area.Item(1).Offset(-2, 0).Text
              For I = 1 To 14
                If Not IsEmpty(Area.Item(I)) Then
                   Data(1, 4) = Area.Item(I).Value
                     Code = Area.Item(I).Offset(0, -1).Value
                   Data(1, 6) = Switch(Code = "", "Food", Code = "fo", "Front Office", _
                                       Code = "h", "Hardware", Code = "c", "CTP", _
                                       Code = "o", "Other")
                   DstRng.Offset(R, 0).Value = Data
                   R = R + 1
                End If
              Next I
          Next Area
            
    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)

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