View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
David Daugherty David Daugherty is offline
external usenet poster
 
Posts: 3
Default Count almost empty rows

I am trying to come up with a macro to count the number of almost empty
rows between non empty rows, and I am at a complete loss on how to go
about doing this.

If the next row has anything in the first cell, the D? will be 1, but
if A? is empty for any of the rows below it, D? will be
1+numberOfEmptyCells, and then delete the rows with the empty A.

I am starting with this:
row/col A B C D E F
1 data data data count data data
2 data data data count data data
3 data
4 data
5 data data data count data data
6 data
7 data data data count data data
8 data data data count data data
9 data data data count data data

And I want to end up with:
row/col A B C D E F
1 data data data 1 data data
2 data data data 3 data data
3 data data data 2 data data
4 data data data 1 data data
5 data data data 1 data data
6 data data data 1 data data

Any help with this would be greatly appreciated.

Thanks
David Daugherty