+ Reply to Thread
Results 1 to 3 of 3

How do I offset the return cell of a vlookup formula

  1. #1
    Registered User
    Join Date
    04-08-2006
    Posts
    34

    Question How do I offset the return cell of a vlookup formula

    Hello,

    In the attached spreadsheet, I have two sheets. One sheet is a weekly score tracking for a golf season, the other sheet is an ongoing calculation and record of a player's average.

    What I am trying to accomplish is I want to look up the player's current average after week 4 results in the handicap sheet and insert it into the week 5's sheet under column W and depending on the players name I enter in column B.

    The formula I was trying to make use of is:
    =IFERROR(VLOOKUP($B5,'2015_Handicaps'!A4:Q25,6,FALSE),"")

    Of course that doesn't work. It returns a value on the same row as the lookup value, whereas I want to return the value directly below in the next row. So for player 1, the value returned in this formula is "45". I would like a formula to return "55".Excel Formula Question 2.xlsx

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,464

    Re: How do I offset the return cell of a vlookup formula

    Maybe use INDEX/MATCH instead of VLOOKUP. You can use the MATCH to get the row and add 1 to it for the INDEX.

    =IFERROR(INDEX('2015_Handicaps'!$F$4:$F$25,MATCH($B5,'2015_Handicaps'!$A$4:$A$25,0)+1),"")


    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Forum Expert
    Join Date
    11-28-2012
    Location
    Guatemala
    MS-Off Ver
    Excel 2010
    Posts
    2,394

    Re: How do I offset the return cell of a vlookup formula

    The usage of the functions match and indirect make your request work. They are necessary locate the exact row and column from where to extract the data.

    Please note that the week number is necessary. I placed it in cell A1.
    Attached Files Attached Files
    Last edited by rcm; 05-25-2015 at 07:43 PM. Reason: typo

+ 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. [SOLVED] Vlookup with offset on return
    By MrSneebly in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 11-17-2014, 03:09 PM
  2. Replies: 3
    Last Post: 06-01-2014, 10:26 AM
  3. [SOLVED] How to use LARGE to return a cell reference for use in OFFSET formula
    By TC1980 in forum Excel Formulas & Functions
    Replies: 11
    Last Post: 10-11-2013, 08:31 AM
  4. [SOLVED] Formula to search array for text and return value from an offset cell
    By tif4300 in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 11-14-2012, 09:04 PM
  5. vlookup + cell offset in a formula?
    By Armitage2k in forum Excel General
    Replies: 5
    Last Post: 10-12-2012, 04:25 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