• 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.

Return Value based on Multiple Cirterion

Based on Agent Name and Followup Date, Return the earliest File# that needs to be processed first

  • NA

    Votes: 0 0.0%
  • NA

    Votes: 0 0.0%
  • NA

    Votes: 0 0.0%

  • Total voters
    0

prashantmpk

New Member
Hi,

Based on Agent Name and Followup Date, Return the earliest File# that needs to be processed first

regards
PM
 

Attachments

  • BlogTest.xlsx
    16.1 KB · Views: 11
Hi, prashantmpk!

As a new user you might want to (I'd say should and must) read this:
http://chandoo.org/forum/forums/new-users-please-start-here.14/

And regarding your issue, you could use this formula:
=SI.ERROR(INDICE(A2:A16;COINCIDIR(C18&"_"&C19;F2:F16&"_"&L2:L16;1));"no file to process") -----> in english: =IFERROR(INDEX(A2:A16,MATCH(C18&"_"&C19,F2:F16&"_"&L2:L16,1)),"no file to process")
but the approximated MATCH requires that the data set is sorted by the search criteria, in this case, column F and then column O; otherwise it won't work properly.

Regards!

EDITED (SirJB7)
Fixed column from O to L. Debraj(ex-Roy)'s catch.
 
Last edited:
@Debraj (ex-Roy)
Hi, buddy!
You're right... will be an earthquake today? :p
However I now realize that it can be solved with SUMPRODUCT, so I leave it to you. Good luck. :rolleyes:
Regards!
 
Hi Prashant..

Can you please check if below is working for you..

Confirm the formula by pressing Ctrl + Shift + Enter, Not Just Enter..

=INDEX(A2:A16,MIN(IF((L2:L16>=C19)*(F2:F16=C18),ROW(L2:L16)+1-MIN(ROW(L2:L16)))))
 
Back
Top