+ Reply to Thread
Results 1 to 4 of 4

Access table by column name in a cell, and row number specific ranges

Hybrid View

  1. #1
    Registered User
    Join Date
    03-20-2017
    Location
    New York, USA
    MS-Off Ver
    2013
    Posts
    5

    Access table by column name in a cell, and row number specific ranges

    Hi,

    I have an excel table named incomeTable like this:

    name | spend | income
    mario | 3 | 10
    roger | 4 | 5
    tom | 5 | 4

    I'd want to access a given column and a given range of rows but getting the column name from a cell.

    I.e., let us say I have in A2 the column name of interest

    columnNameOfInterest
    spend

    Then, how'd I access a range of rows and all the contents in that column?
    =incomeTable[[1:2],[=$A2]]

    and it'd return
    3
    4

  2. #2
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Access table by column name in a cell, and row number specific ranges

    Try

    =HLOOKUP($A$2,incomeTable[#All],2,FALSE)
    =HLOOKUP($A$2,incomeTable[#All],3,FALSE)

    Note that instead of 1 and 2, use 2 and 3 to account for the headings. If you want to make the formula more 'copyable' use

    =HLOOKUP($A$2,incomeTable[#All],ROW(A2),FALSE)

    and the A2 will increment as you copy the formula down.

    If you want to transpose the values into a row, then use

    =HLOOKUP($A$2,incomeTable[#All],COLUMN(B1),FALSE)

    and copy across.
    Bernie Deitrick
    Excel MVP 2000-2010

  3. #3
    Registered User
    Join Date
    03-20-2017
    Location
    New York, USA
    MS-Off Ver
    2013
    Posts
    5

    Re: Access table by column name in a cell, and row number specific ranges

    Hi Bernie, this sounds right, but when I do the HLOOKUP it only returns the first value. I.e., 3 in the example. How can I make it return all the row values in the spend column, i.e., 3,4 and 5.

    I tried, =HLOOKUP($A$2,incomeTable[#All],ROW(A2),FALSE), but it gave me a reference error

    Or also select a range of the number of rows to return?

    Thanks in advance!
    Last edited by dnaiel; 03-20-2017 at 01:17 PM.

  4. #4
    Registered User
    Join Date
    03-20-2017
    Location
    New York, USA
    MS-Off Ver
    2013
    Posts
    5

    Re: Access table by column name in a cell, and row number specific ranges

    never mind, my bad, all works great, thanks so much!

+ 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. access pivot table chart with multiple Ranges shown
    By superchew in forum Access Tables & Databases
    Replies: 1
    Last Post: 09-29-2014, 12:48 AM
  2. Replies: 4
    Last Post: 05-26-2013, 05:54 PM
  3. Named ranges for table array, and Column index number?
    By phefray in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 08-16-2012, 06:43 PM
  4. [SOLVED] Exporting Access table to Specific file/cell
    By Kinez101 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-17-2012, 08:48 PM
  5. obtain specific rows and column from access table
    By Macdave_19 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-18-2010, 07:44 AM
  6. Macro-Copy&Paste Fixed Data Ranges Into Last Empty Cell of Specific Column
    By hailnorm in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 04-26-2009, 10:15 PM
  7. Replies: 3
    Last Post: 01-21-2009, 05:37 AM

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