D
DA
I have a worksheet (database) with 11 columns, say,
columns A to K. I have more than 500 rows (sort everyday),
say, starts with row 1.
Col A = Number
Col B = Name of State
Col C to Col K = Other info.
I have to sort the above database into 2 tables.
Table 1 = If A1 is more than 20, I have to copy the info
on all the columns so, my formula across the columns for
each row is:
=IF(A1>=20,+A1,"")
Table 2 = Exclude if A1 is ZERO (0) and the State is
Hawaii (HI) so, my formula across the colums for each row
is:
=IF(AND($A1=0,$B1="HI"),"",+A1)
Problem:
If the formula does not meet the criteria, the row is
blank.
Is there a better or easier way to do it to:
a) don't leave any blank rows
b) fill the rows automatically
Thanks
columns A to K. I have more than 500 rows (sort everyday),
say, starts with row 1.
Col A = Number
Col B = Name of State
Col C to Col K = Other info.
I have to sort the above database into 2 tables.
Table 1 = If A1 is more than 20, I have to copy the info
on all the columns so, my formula across the columns for
each row is:
=IF(A1>=20,+A1,"")
Table 2 = Exclude if A1 is ZERO (0) and the State is
Hawaii (HI) so, my formula across the colums for each row
is:
=IF(AND($A1=0,$B1="HI"),"",+A1)
Problem:
If the formula does not meet the criteria, the row is
blank.
Is there a better or easier way to do it to:
a) don't leave any blank rows
b) fill the rows automatically
Thanks