+ Reply to Thread
Results 1 to 13 of 13

Newbie Help with Index Match

  1. #1
    Registered User
    Join Date
    05-13-2015
    Location
    USA
    MS-Off Ver
    OFFICE 2013
    Posts
    8

    Newbie Help with Index Match

    Hi Everyone. This is my very first post so please take it easy on me

    I am sending out alerts to my staff and getting responses. I need to keep track of their response time and if there was one at all.

    I need help with the Index Match Function to give me the closest "received time" so I can properly flag the row if they employee has not responded.

    Please see attached example.

    Thank you!
    Attached Files Attached Files

  2. #2
    Valued Forum Contributor
    Join Date
    05-20-2013
    Location
    Ohio, USA
    MS-Off Ver
    Excel 2013
    Posts
    941

    Re: Newbie Help with Index Match

    Cannot discern what you are attempting to do from your file. It appears you want help with column D. How does it relate to data in columns A through C (column A because it has duplicate names).

    FWIW, as they currently are, column E and F do not need to be array-entered formulas.

  3. #3
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,946

    Re: Newbie Help with Index Match

    Agree with jhren, perhaps you could manually enter what you expecty the answers to be, and we can try and work with that?

    On a side note, you need to remove the "" from around the 0...or just remove the 0...
    =IFERROR(IF($B2=0,"",(INDEX($C$2:$C$10001, MATCH(MIN(ABS($C$2:$C$10001-$B2)), ABS($C$2:$C$10001-$B2), 0)))),"")
    =IFERROR(IF($B2="","",(INDEX($C$2:$C$10001, MATCH(MIN(ABS($C$2:$C$10001-$B2)), ABS($C$2:$C$10001-$B2), 0)))),"") (prefered)

    By using "0", you are forcing a check for a text 0, not a numeric 0
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  4. #4
    Registered User
    Join Date
    05-13-2015
    Location
    USA
    MS-Off Ver
    OFFICE 2013
    Posts
    8

    Re: Newbie Help with Index Match

    Hi Jhren thanks for the reply. Let me try to explain. Let's only look at columns B, C, D and H

    We send out an email to our security guards which is time stamped in column B (CHECK IN SENT TIME(0)) to the address in H ("Sent To")

    The Security Guard replies and it is timestamped in Column C (Check In Received Time(G).

    I would like Column D to give me the best match between Column B and C with the same value of Column H.

    So in theory if a guard skips the step of replying the sheet will give me the last known response (Column C) in comparison to the most recent Check In Sent Time (Column B).

    Does this make sense? I think I need to do this with Index,Match with column H and Column B being the anchors.

    Thanks again for your help. Let me know if I can explain it more.

    Column B is the

  5. #5
    Valued Forum Contributor
    Join Date
    05-20-2013
    Location
    Ohio, USA
    MS-Off Ver
    Excel 2013
    Posts
    941

    Re: Newbie Help with Index Match

    Try...
    Please Login or Register  to view this content.
    ...in D2, and copy down.
    Last edited by jhren; 05-15-2015 at 10:53 PM.

  6. #6
    Registered User
    Join Date
    05-13-2015
    Location
    USA
    MS-Off Ver
    OFFICE 2013
    Posts
    8

    Re: Newbie Help with Index Match

    jhren that worked, but I realized the data I was pulling wasn't enough info for what I wanted to accomplish. I needed to have the Sent to (time) & Sent to (email address) as well as the Received (time) and Received from (email address) to be able to have a unique identifier. I have attached a revised sheet. Ideally if the guard does not respond to the email I would like the sheet to lable the "Adjusted Received Time as NA. Thank you for all your help.
    Attached Files Attached Files

  7. #7
    Valued Forum Contributor
    Join Date
    05-20-2013
    Location
    Ohio, USA
    MS-Off Ver
    Excel 2013
    Posts
    941

    Re: Newbie Help with Index Match

    In D2 and copied down...
    Please Login or Register  to view this content.
    ...or...
    Please Login or Register  to view this content.
    Last edited by jhren; 05-16-2015 at 11:23 AM.

  8. #8
    Registered User
    Join Date
    05-13-2015
    Location
    USA
    MS-Off Ver
    OFFICE 2013
    Posts
    8

    Re: Newbie Help with Index Match

    It is getting closer. Let me start with saying I REALLY appreciate your help. I have been stuck on this for awhile now and it is the final piece of the very large puzzle. OK so I have attached a revised sheet with some clearer information that may make better sense to you. Do you think this can be done or am I nuts for thinking this can work?
    Attached Files Attached Files

  9. #9
    Valued Forum Contributor
    Join Date
    05-20-2013
    Location
    Ohio, USA
    MS-Off Ver
    Excel 2013
    Posts
    941

    Re: Newbie Help with Index Match

    See attached file.

    I can get close, but there's some conflict in your logic vs what I understand it to be (red) and some outright conflicts as I see them (yellow).

    Changed formulas in columns C and F (achieves same result, so not required, but it made better Excel sense to me )
    Attached Files Attached Files

  10. #10
    Registered User
    Join Date
    05-13-2015
    Location
    USA
    MS-Off Ver
    OFFICE 2013
    Posts
    8

    Re: Newbie Help with Index Match

    Thank you jhren. I see how close we are. I have an idea (see attached) maybe it can be accomplished this way? Did I thank you for your help yet?
    Attached Files Attached Files

  11. #11
    Valued Forum Contributor
    Join Date
    05-20-2013
    Location
    Ohio, USA
    MS-Off Ver
    Excel 2013
    Posts
    941

    Re: Newbie Help with Index Match

    In D2, copied down...
    Please Login or Register  to view this content.

  12. #12
    Registered User
    Join Date
    05-13-2015
    Location
    USA
    MS-Off Ver
    OFFICE 2013
    Posts
    8

    Re: Newbie Help with Index Match

    jhren you are a genius! It totally works. I am so relieved and so grateful. Thank you thank you!!!

  13. #13
    Valued Forum Contributor
    Join Date
    05-20-2013
    Location
    Ohio, USA
    MS-Off Ver
    Excel 2013
    Posts
    941

    Re: Newbie Help with Index Match

    You're quite welcome. Glad I could help.

+ 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. INDEX MATCH MATCH/OFFSET MATCH MATCH with named ranges
    By Andrew-Mark in forum Excel General
    Replies: 3
    Last Post: 02-27-2015, 10:56 PM
  2. Replies: 6
    Last Post: 04-30-2014, 02:42 AM
  3. Replies: 6
    Last Post: 11-08-2013, 10:29 PM
  4. Replies: 3
    Last Post: 05-02-2013, 01:31 AM
  5. Replies: 5
    Last Post: 02-29-2012, 08:51 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