BAarray is an array containing values in Range("A6:IP15"), so size is BAarray (1 TO 10, 1 To 250).
Therefore row A6:IP6 will be in BAarray(1,1), BAarray(1,2).......BAarray
I want to check the array for values in BAarray(1,1), BAarray(2,1)......BAarray(
For example, say range A6:A15 contained:
Null
1
Null
2
Null
.
.
Null
I want my final array to contain the full 2 elements from the original array, in this case BAarray(2,1 TO 250) and BAarray(4,1 TO 250)
I did look at loading just the range containing relevent values into the array but it doesn't work with non-contiguous ranges.
Main Topics
Browse All Topics





by: thydzikPosted on 2009-10-26 at 22:44:20ID: 25669397
so to clarify.
array BA is (1 to 10, 1 to 10)
when BA(x,y) is an integer, you want to delete BA(1,y), BA(2,y), .., BA(9,1), BA(10,y)
for y = 1 to 10?