Closed Thread
Results 1 to 7 of 7

Vlookup or index match possibly needed

  1. #1
    Forum Contributor
    Join Date
    08-29-2017
    Location
    Canada
    MS-Off Ver
    Window 2013
    Posts
    127

    Vlookup or index match possibly needed

    Good evening Programming Experts,

    I need your assistance , I have an excel sheet with a dashboard on sheet1 and raw data on sheet 2. I'm trying to use a v lookup or index match but its failing, not sure if its the way my raw data set up but by the looks of it all looks good.

    below is my dashboard view

    02-Nov Monday
    quality Metric NCC-O NCC-A ABB-D ABB-D%
    Grand Total



    02-Nov Monday
    quality Metric NCC-O NCC-A ABB-D ABB-D%
    John Doe
    Amy Watson
    Justin Brown
    Noah Anderson

    below is my raw data view

    Roll UP Monday Tuesday Wednesday Thursday Friday
    Met Target 22 21 16 21 22
    NCC-O 16 13 21 11 9
    NCC-A 23 21 32 33 16
    ABB-D 14 17 22 13 22
    ABB-D% 5 3 6 7 3


    John Doe Monday Tuesday Wednesday Thursday Friday
    Met Target 3 5 3 2 1
    NCC-O 6 7 8 7 2
    NCC-A 3 3 5 7 9
    ABB-D 1 1 1 1 1
    ABB-D% 5 6 8 9 9

    Amy Watson Monday Tuesday Wednesday Thursday Friday
    Met Target 3 5 3 2 1
    NCC-O 6 7 8 7 2
    NCC-A 3 3 5 7 9
    ABB-D 1 1 1 1 1
    ABB-D% 5 6 8 9 9


    Justin Brown Monday Tuesday Wednesday Thursday Friday
    Met Target 3 5 3 2 1
    NCC-O 6 7 8 7 2
    NCC-A 3 3 5 7 9
    ABB-D 1 1 1 1 1
    ABB-D% 5 6 8 9 9



    Noah Anderson Monday Tuesday Wednesday Thursday Friday
    Met Target 3 5 3 2 1
    NCC-O 6 7 8 7 2
    NCC-A 3 3 5 7 9
    ABB-D 1 1 1 1 1
    ABB-D% 5 6 8 9 9


    I would like the raw nicely summarized in the dashboard. The only thing that I would need say is my dashboard DAY OF WEEK is programmed to change each day so it will become Monday then Tuesday then Wednesday ect. I want the formula to capture that in the dashboard from the raw data as the days change,

    I have also attached my excel document to make it easier.

    Thank you greatly.
    Attached Files Attached Files

  2. #2
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,612

    Re: Vlookup or index match possibly needed

    Create named ranges for each block on raw data sheet
    Amy_Watson
    ='Raw data'!$B$17:$G$22
    Grand_Total
    ='Raw data'!$B$2:$G$7
    John_Doe
    ='Raw data'!$B$10:$G$15
    Justin_Brown
    ='Raw data'!$B$25:$G$30
    Noah_Anderson
    ='Raw data'!$B$34:$G$39
    Use:
    Please Login or Register  to view this content.
    on your dashboard sheet.
    The SUBSTITUTE fn replaces the spaces in the names with underscores, and passes the result to INDIRECT to build the array to return the data from corresponding to the employee name.
    Attached Files Attached Files
    Last edited by protonLeah; 11-04-2017 at 01:11 AM.
    Ben Van Johnson

  3. #3
    Forum Expert
    Join Date
    07-20-2011
    Location
    Mysore, India.
    MS-Off Ver
    Excel 2019
    Posts
    8,587

    Re: Vlookup or index match possibly needed

    In C14, drag upto F14

    =INDEX('Raw data'!$C$3:$G$7,MATCH(Dashboard!C$13,'Raw data'!$B$3:$B$7,0),MATCH($C$18,'Raw data'!$C$10:$G$10,0))

    In C20, Drag upto F23

    =INDEX('Raw data'!$C$10:$G$39,MATCH(Dashboard!C$19,INDEX('Raw data'!$B$10:$B$39,MATCH(Dashboard!$B20,'Raw data'!$B$10:$B$39,0)):'Raw data'!$B$39,0),MATCH($C$18,'Raw data'!$C$10:$G$10,0))
    Attached Files Attached Files
    Pl note
    Array formula should be confirmed with Ctrl+Shift+Enter keys together.
    If answere is satisfactory press * to add reputation.

  4. #4
    Forum Expert shukla.ankur281190's Avatar
    Join Date
    05-17-2014
    Location
    Lucknow, India
    MS-Off Ver
    Office 365
    Posts
    3,937

    Re: Vlookup or index match possibly needed

    Can try

    C20
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    Copy across.
    If I helped, Don't forget to add reputation (click on the little star ★ at bottom of this post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)

  5. #5
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,877

    Re: Vlookup or index match possibly needed

    Please take a moment to re-read forum rule #1 and then amend your thread title to something that better explains your problem. Changing your thread title is not optional, which means you must change it. Thanks!

    • Use concise, accurate thread titles.
    • Your post title should describe your problem, not your anticipated solution.
    • Use terms appropriate to a Google search - poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice tell us nothing.
    • Responding to a request to change your thread title by doing so is mandatory.

    To change a title go to your first post, click EDIT then Go Advanced and change your title.

    No help to be offered, please, until the OP complies with this request.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  6. #6
    Forum Contributor
    Join Date
    08-29-2017
    Location
    Canada
    MS-Off Ver
    Window 2013
    Posts
    127

    Re: Vlookup or index match possibly needed

    Thank you very much experts shukla.ankur281190 ,protonLeah and kvsrinivasamurthy , I found that all of your formulas do work! and solved by issue! I think the one from protonLeah worked a little better due to the use of the indirect and substitute which assisted me in being able to drag my formula In C20 to F23 without changing the parameters from ='Raw data'!$B$10:$G$15 to ='Raw data'!$B$25:$G$30 ect.

    Thank you all, you have been a great help!

    Noah

  7. #7
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,877

    Re: Vlookup or index match possibly needed

    Your post does not comply with Rule 7 of our Forum RULES. Please do not ignore requests by Administrators, Moderators and senior forum members regarding forum rules.

    If you are unclear about the request or instruction then send a private message to them asking for clarification.

    All participants:
    Please do not post a reply in a thread where a moderator has requested an action that has not yet been complied with e.g Title change or Code tags...etc. Thanks.

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Index Match / Vlookup / Other formula needed
    By rustywrightone in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 08-18-2017, 10:48 AM
  2. [SOLVED] Need help with Index Match or possibly array type of match
    By chadboehne in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 03-14-2017, 01:16 PM
  3. [SOLVED] VLOOKUP formula with multiple criteria (possibly INDEX/MATCH instead?)
    By Alphabex in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 09-03-2016, 04:09 AM
  4. [SOLVED] Sumproduct formula needed (possibly using index/match)
    By bwmuhich in forum Excel Formulas & Functions
    Replies: 18
    Last Post: 04-07-2015, 01:49 PM
  5. Vlookup with index/match possibly.
    By Kramxel in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 02-05-2015, 06:06 AM
  6. [SOLVED] Vlookup or Index Match Formula Needed
    By artiststevens in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-07-2015, 01:09 AM
  7. [SOLVED] Index, Match, Vlookup, Hlookup help needed
    By Gemma_10 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 11-20-2013, 01:05 PM

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