How about skipping rows?
What I have is a number of tables that i need to transfer from my main
sheet to sheet 2 where the tables will be nicely formatted. My tables
contain
BRAND NAME
description 1
description 2
description 3
Total
Blank row
BRAND NAME
description 1
description 2
description 3
Total
Blank row....etc
I am using this formula to to transdre values in column A and excluding
the total at the bottom of each table.
=IF(AND($J3="Brand",I3="Y"),A3,IF(AND($J3="Data",I3="Y"),PROPER(A3),IF($J3="Total","","")))
and this formula to enter the numeric values to the right of column a
fields
=IF(AND($J2="Data",$I2="Y"),B2,IF($J2="Total","",IF(B2="","","")))
Column J identifies what type of data in contained in the row either
Brand, Total or Data
Column I is used by the user to enter a "Y" indicating that that data
is to be transfered to sheet 2
Now what i need is a means of detecting blank rows in range A:H if all
cells are empty then i want to so to the next formatted table in in
sheet 2
I realise that this is a REALLY long way to do something that could be
easily don in VBA but I dont yet have the skills to do it in VBA.
When i get this working I plan to use a VBA code i found on the net to
delete blank rows to make my tables nice an neat. Im also going to
regord a macro to reste the blank tables (for each formatted table I
have allowed 20 rows for data to be entered).