+ Reply to Thread
Results 1 to 3 of 3

dynamic range by column index

Hybrid View

  1. #1
    Registered User
    Join Date
    03-11-2011
    Location
    Gelrode
    MS-Off Ver
    Excel 2007
    Posts
    4

    dynamic range by column index

    Hi,

    I define a dynamic range like this one

    =OFFSET(sheet!$J$2;0;0;COUNTA(sheet!$J:$J)-1,1)

    however, I have a variable number of columns in that sheet so it could be column "J" but it could as well be column "Q".

    How can I replace these fixed columns to a "by column index" reference (for instance column 22) ??

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: dynamic range by column index

    Perhaps?

    =INDEX(Sheet!$1:$65536;2;22):INDEX(Sheet!$1:$65536;COUNTA(INDEX(Sheet!$1:$65536;0;22));22)

    where the 22's represent column 22.
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Registered User
    Join Date
    03-11-2011
    Location
    Gelrode
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: dynamic range by column index

    how long would the script last with 65K ??

    we have found a solution this way (30 is the col number in this example) :



    colHere = Split(ActiveSheet.Cells(1, 30).Address, "$")(1)
    
    ThisWorkbook.Names.Add Name:="rngTest", _
    RefersTo:="=OFFSET(theSheet!$" & colHere & "$2,0,0,COUNTAtheSheet!$" & colHere & ":$" & colHere & ")-1,1)"

    in the named ranges collection this is translated to "AD" which is indeed column 30.

    Don't know if it wins beauty contests though ;-)
    Does this seem ok to you ?? Is there a better way to do it ??
    Last edited by NBVC; 03-14-2011 at 12:19 PM.

+ 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