Retrive First and last occurrence between specific time intervals

xs4amit

New Member
Joined
May 21, 2018
Messages
34
Hi Experts,

I have data like the table below, where I want to fetch time (Column C) when the Emp Code 843567 swiped his card on 05/23/2018 for first and last time between time interval 6:00 AM and 3:00 PM.


[TABLE="width: 500"]
<tbody>[TR]
[TD]EMP Code[/TD]
[TD]DATE[/TD]
[TD]CARD SWIPE TIME[/TD]
[/TR]
[TR]
[TD]843567[/TD]
[TD]05/23/2018[/TD]
[TD]6:10 AM[/TD]
[/TR]
[TR]
[TD]674593[/TD]
[TD]05/23/2018[/TD]
[TD]5:45 AM[/TD]
[/TR]
[TR]
[TD]843567[/TD]
[TD]05/23/2018[/TD]
[TD]8:51 AM[/TD]
[/TR]
[TR]
[TD]365745[/TD]
[TD]05/23/2018[/TD]
[TD]6:20 AM[/TD]
[/TR]
[TR]
[TD]845593[/TD]
[TD]05/23/2018[/TD]
[TD]5:55 AM[/TD]
[/TR]
[TR]
[TD]843567[/TD]
[TD]05/23/2018[/TD]
[TD]2:43 PM[/TD]
[/TR]
[TR]
[TD]843567[/TD]
[TD]05/23/2018[/TD]
[TD]5:51 PM[/TD]
[/TR]
[TR]
[TD]674597[/TD]
[TD]05/23/2018[/TD]
[TD]6:40 AM[/TD]
[/TR]
[TR]
[TD]843567[/TD]
[TD]05/24/2018[/TD]
[TD]6:00 AM[/TD]
[/TR]
[TR]
[TD]674597[/TD]
[TD]05/24/2018[/TD]
[TD]10:00 AM[/TD]
[/TR]
[TR]
[TD]674593[/TD]
[TD]05/24/2018[/TD]
[TD]6:12 AM[/TD]
[/TR]
[TR]
[TD]674593[/TD]
[TD]05/24/2018[/TD]
[TD]11:00 AM[/TD]
[/TR]
</tbody>[/TABLE]



Which should give me result exactly like 6:10 AM and 2:43 PM

Right now I am trying something like =IFERROR(INDEX(Range,Match(1,(Test 1)*(Test 2)*(Test 3),0),3),"") SHIFT+CRL+ENTER
But not working

Thanks in advance
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Control+shift+enter, not just enter:

=TEXT(INDEX($C$2:$C$13,MATCH(E2,IF($B$2:$B$13=F2,IF($C$2:$C$13>="06:00 AM"+0,IF($C$2:$C$13<="03:00 PM"+0,$A$2:$A$13))),0)),"h:mm AM/PM")&" and "&TEXT(LOOKUP(9.99999999999999E+307,1/(($A$2:$A$13=E2)*($B$2:$B$13=F2)*($C$2:$C$13>="06:00 AM"+0)*($C$2:$C$13<="03:00 PM"+0)),$C$2:$C$13),"h:mm AM/PM")


where E2 = 843567 and F2 = 5/23/2018.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top