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

How to find Min date and time with respective name

=MINIFS(B:B,A:A,A2)

what version of excel do you have ?

or a pivot table
 

Attachments

  • Test-ETAF.xlsb
    995.3 KB · Views: 5
no it wont
=MIN(IF(A:A=A2,B:B,""))
us control+shift+enter to enter as an array formula
it will then look like
{=MIN(IF(A:A=A2,B:B,""))}
with curly brackets

probably not a good idea to reference complete cells
so set the range
=MIN(IF($A2:$A$100000=A2,B$2:B$100000,""))
 
Back
Top