Sorting Every 3rd Cell into a new column

sbmike

New Member
Joined
Oct 20, 2008
Messages
9
have a very long list of data of temperatures recorded at one minute intervals. There is a date and time in one column and the temperature in the other. The columns are approximately 25K rows long.

I have discovered the data was actually collected every 3 minutes, so one third of my data is duplicated.

So how do I create a new set of columns that only includes every third row of data. If there is a way to do this not using macros it would be prefered. But I can manage if a macro is the only way.

I am a Mac user

Thanks
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
have a very long list of data of temperatures recorded at one minute intervals. There is a date and time in one column and the temperature in the other. The columns are approximately 25K rows long.

I have discovered the data was actually collected every 3 minutes, so one third of my data is duplicated.

So how do I create a new set of columns that only includes every third row of data. If there is a way to do this not using macros it would be prefered. But I can manage if a macro is the only way.

I am a Mac user

Thanks

C2:

=INDEX(A$2:A$1000,3*(ROWS(C$2:C2)-1)+1)

would copy every 3rd value from the range in column A to column C.
 
Upvote 0
You could also use the advanced filter option (unique records) option to extract a unique list by date/time as it will remove all duplicated date/times.
 
Upvote 0
Thanks for the answer, however deleting duplicate data will not work. Each piece of data has a date/time value in one column and a temperature value in the second column. What I need to do is extract the information from every third row and put this information in another column.
 
Upvote 0
Thanks for the answer, however deleting duplicate data will not work. Each piece of data has a date/time value in one column and a temperature value in the second column. What I need to do is extract the information from every third row and put this information in another column.

See my reply in case you missed it...
 
Upvote 0
Thanks for the answer, however deleting duplicate data will not work. Each piece of data has a date/time value in one column and a temperature value in the second column. What I need to do is extract the information from every third row and put this information in another column.

Ok then Aladin's solution is definantely the best one using a formula solution
 
Upvote 0
Thanks for your help.

I see now I can create a new column and assign the rows repeating values of 1 - 0 - 0. I will then sort the data by the new column and the date/time column.

Thanks
 
Upvote 0

Forum statistics

Threads
1,214,907
Messages
6,122,183
Members
449,071
Latest member
cdnMech

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