• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

formula is not working | Index match

Mr.Karr

Member
Experts,

I'm trying to retrieve value from a range where I have date and related values using index match. But it is not retrieving data from another formula (vlook-up value)

Normally this should work flawless. Probably I'm missing something here. Can someone please fix this.

Please refer to the sample file attached.

Thanks,
Kar
 

Attachments

  • sample file.xlsx
    11.4 KB · Views: 10
Try......

C12, formula copy down :

=IFERROR(INDEX($I$2:$I$10,MATCH(TEXT(A12,"mmm/dd/yyyy"),INDEX(TEXT($H$2:$H$10,"mmm/dd/yyyy"),0),0)),"")

Regards
Bosco
 
Another option.
=INDEX($I$2:$I$10,MATCH(INT(A12),INDEX(INT($H$2:$H$10),,),0))

Date portion can be extracted from DateTime value using INT.

Edit: I'm guessing that the reason Marc's method didn't work for you is that you used NOW() function instead of Today() in your calculation in Column A
 
Last edited:
Back
Top