+ Reply to Thread
Results 1 to 5 of 5

Matrix Help

Hybrid View

173 Matrix Help 05-22-2008, 11:00 PM
mrice This macro might help. It... 05-23-2008, 03:14 PM
173 Thanks 06-25-2008, 09:55 PM
173 Solved 12-28-2008, 03:48 AM
DonkeyOte Purely as a heads up (given... 12-28-2008, 05:39 AM
  1. #1
    Registered User
    Join Date
    05-14-2008
    Location
    Southern Illinois
    MS-Off Ver
    2007
    Posts
    56

    Solved

    Thanks
    SOLVED

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531
    Purely as a heads up (given resolved) given changes made in 2007 it's now best to use Rows.Count as opposed to 65536:

    eg this:
    For N = Cells(Rows.Count, 1).End(xlUp).Row To 3 Step -1
    as opposed to this:
    For N = Cells(65536, 1).End(xlUp).Row To 3 Step -1
    This is purely down to the fact that 2007 has 1 million plus rows and thus you can not guarantee 100% of the time that the 65536 method will work pending version etc.... the Rows.Count method is essentially failsafe
    (the same is true re: Columns.Count etc...)

+ 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