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

HIGHTlight time which matches

Techtrend

Member
Need to Highlight the time in C and E Col which matches with A1,

The data is attached in the excel
 

Attachments

  • highlight time.xls
    26 KB · Views: 8
Screen Shot 2016-12-20 at 16.04.51.png
... and remember,
even every second have to match
(not only minute)
 

Attachments

  • highlight time.xls
    30 KB · Views: 3
Hi,

Or use this if Dates and Seconds are not concerned:
=TIME(HOUR($A$1),MINUTE($A$1),0)=TIME(HOUR(C2),MINUTE(C2),0)

and this if you want to ignore Seconds only:
=AND($A$1-MOD($A$1,1)=C2-MOD(C2,1),TIME(HOUR($A$1),MINUTE($A$1),0)=TIME(HOUR(C2),MINUTE(C2),0))

Regards,
 
Back
Top