Multi Cell search row wise

treeppm

Board Regular
Joined
Jun 3, 2015
Messages
60
Hello brothers, I hope everyone doing well.

I've bunch of data like following. If suppose I want search particular date and time
How to search multiple cells in Excel?.

2016/07/0522:00:001072410751
2016/07/0522:30:001073710755
2016/07/0523:00:001066610716
2016/07/0523:30:001068310726
2016/07/0600:00:001071010746

<tbody>
</tbody>

like this kind of data's I've in excel

If I want go 2016/08/06 at the time 12:30:00 How to search and find that in Excel?

Kind Regards
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
One way is to use a helper column

With
- search date in G1
- earch time in H1
- data in columns A:D starting in row2

Paste this formula in E2 and copy down
=IF(AND(A2=$G$1,B2=$H$1),"Match","")

Now either search for "Match" or use Data Filter , filter on "Match" in column E

OR formula to check by addition of date and time
=IF(ROUND(A2+B2,5)=ROUND($G$1+$H$1,5),"Match","")
 
Last edited:
Upvote 0
I Got another Idea friends. Thank you so much for trying to solve my problems. It's been great to be here. live happy friends.

Best Regards
 
Upvote 0
I Got another Idea friends

@treeppm
Please do not keep your "idea" secret
Reply to the thread and tells us what you did so that others may benefit
 
Upvote 0

Forum statistics

Threads
1,214,998
Messages
6,122,639
Members
449,093
Latest member
Ahmad123098

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