Filtered Data Formula

KristenLehman

New Member
Joined
Jun 24, 2014
Messages
7
Hello,

I'm trying to copy filtered data to a new worksheet using a formula. I can't figure out a formula that will only copy the filtered data, leaving out unwanted cells. The data that will be in this worksheet will change, I think the only thing that will remain the same is a time frame between 0.09:00:00 to 0.09:01:39.

example
0:09:00:00
0:09:00:01
0:09:00:02
0:09:00:03
...
...
Down to
0:09:01:39

I need a formula that will do this so that I don't have to do it manually, I have to much data.
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
If it means maybe filtering based on being greater than equal to that start time and less than or equal to end time, then something like this with O365
Code:
=FILTER($A$1:$A$8,($A$1:$A$8>="0:09:00:00")*($A$1:$A$8<="0:09:01:39"))
 

Attachments

  • filterformrexcel.JPG
    filterformrexcel.JPG
    36.8 KB · Views: 4
Upvote 0

Forum statistics

Threads
1,214,874
Messages
6,122,034
Members
449,061
Latest member
TheRealJoaquin

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