+ Reply to Thread
Results 1 to 2 of 2

selecting a range-, I want it to select I3: to the end of the column.

  1. #1
    jhahes
    Guest

    selecting a range-, I want it to select I3: to the end of the column.

    I am trying to do the following.

    With a macro, I want it to select I3: to the end of the column.

  2. #2
    Registered User
    Join Date
    07-05-2005
    Posts
    3

    Select from I3 --> end of column...

    This is simple...

    the macro should look like this


    Sub selectcolumn_I_from3rdcell ()

    Sheets("Sheet1").Activate
    Range("I3:I65536").Select

    End Sub


    You can change the number 65536 to any number smaller than that. for example to select from I3 to I300 the second line of the macro should look like

    Range("I3:I300").Select

    Hope this helps!

    Regards

    Aaron Stockley

+ 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