Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I have a list of times, automatic data was taken every 15 seconds (I have over 5,000 rows of data). I need to show only times that end in 00, so a whole minute. Column A row 1 Time row 2 00:00:00 row 3 00:00:15 row 4 00:00:30 row 5 00:00:45 row 6 00:01:00 In this example only rows 2 and 6 would be returned. Any suggestions. Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The easiest solution here would probably be to use a helper column. Insert a
new column for B and use this formula and copy down: =IF(SECOND(A2)=0,"X","") This will return an "X" for any value in column A that ends in :00. Then, apply the filter to Column B to show only "X" values. The other option (although more cumbersome in my opinion) would be to convert all of the times in Column A to Text, then use the Custom Filter to show values that end with 00. HTH, Elkar "Becksicle" wrote: Hi, I have a list of times, automatic data was taken every 15 seconds (I have over 5,000 rows of data). I need to show only times that end in 00, so a whole minute. Column A row 1 Time row 2 00:00:00 row 3 00:00:15 row 4 00:00:30 row 5 00:00:45 row 6 00:01:00 In this example only rows 2 and 6 would be returned. Any suggestions. Thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would insert a helper column (a new column B) and use a formula like:
=SECOND(A2) and drag down. Then filter by that column to show 0. Becksicle wrote: Hi, I have a list of times, automatic data was taken every 15 seconds (I have over 5,000 rows of data). I need to show only times that end in 00, so a whole minute. Column A row 1 Time row 2 00:00:00 row 3 00:00:15 row 4 00:00:30 row 5 00:00:45 row 6 00:01:00 In this example only rows 2 and 6 would be returned. Any suggestions. Thanks -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Elkar.
"Elkar" wrote: The easiest solution here would probably be to use a helper column. Insert a new column for B and use this formula and copy down: =IF(SECOND(A2)=0,"X","") This will return an "X" for any value in column A that ends in :00. Then, apply the filter to Column B to show only "X" values. The other option (although more cumbersome in my opinion) would be to convert all of the times in Column A to Text, then use the Custom Filter to show values that end with 00. HTH, Elkar "Becksicle" wrote: Hi, I have a list of times, automatic data was taken every 15 seconds (I have over 5,000 rows of data). I need to show only times that end in 00, so a whole minute. Column A row 1 Time row 2 00:00:00 row 3 00:00:15 row 4 00:00:30 row 5 00:00:45 row 6 00:01:00 In this example only rows 2 and 6 would be returned. Any suggestions. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pls confirm 2007 chart redraw is up to 10 times slower than 2003 | Charts and Charting in Excel | |||
Excel 2007 - Filtering and copying | Excel Discussion (Misc queries) | |||
Double Filtering in Excel 2007 | New Users to Excel | |||
Another Filtering Question for Excel 2007 Experts | New Users to Excel | |||
trouble filtering a list. Why isn't column filtering? | Excel Worksheet Functions |