Selecting every other row to delete or move

G

Guest

I have an imported file that has 12 columns of data in every other row. On
the alternate rows are descriptions that I need to move out of the way of the
12 columns. I need to sum the colums, but the description gets in the way.
See below: I also import a file that has garbage data on every other row, I
would like to be able to select every other row for a range of rows. Any
suggestions greatly appreciated.

A B C D
E
4233 Pay
100 200 300 400 500
4235 Health ins
50 60 70 80
90
 
G

Guest

You could use a helper column and enter

=Mod(Row())

and copy down. This will give you alternating 1's and 0's. If you just
want to hide the garbage, use the autofilter on this column to filter out the
data you don't want and use the Subtotal function to sum up the visible
cells. Or filter out the data you want to keep and delete the garbage, then
turn off autofilter, leaving the data you want to keep.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top