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

Time Stamp

Dear Team

I need Start Time (Cell F3)& End time (cell G3) of TSM Mobile No. as per date wise from "Details" Sheet refer column B C & D respectively.

Kindly Refer attached file.


Thanks

Thanks
Basavaraj K H
 

Attachments

  • TSE OTP Report - 21st May\'16.xlsb
    331.4 KB · Views: 6
if data is sorted then..

CSE
F3=INDEX(Details!$C$1:$C$10154,MATCH(1,(Details!$B$1:$B$10154=E$1)*(Details!$D$1:$D$10154=$C3),0))


G3=LOOKUP(2,1/((Details!$B$1:$B$10154=E$1)*(Details!$D$1:$D$10154=$C3)),Details!$C$1:$C$10154)
 
Another would be.

both are CSE..

=MIN(IF((Details!$B$1:$B$10154=E$1)*(Details!$D$1:$D$10154=$C3),Details!$C$1:$C$10154))

=MAX(IF((Details!$B$1:$B$10154=E$1)*(Details!$D$1:$D$10154=$C3),Details!$C$1:$C$10154))
 

Attachments

  • TSE OTP Report - 21st May\'16.xlsb
    340.3 KB · Views: 9
Back
Top