Populating an array from a filtered data
Dear all
I am finding a problem working with filtered range selection. Actually I want to populate an array with the filtered data. Here is my code that selects the filtered data but being new to array concepts, I want your help to figure out the code that could fill all the data for columns A thru J from the filtered data.
Sub intero()
Dim a, b As Single
Range("j65536").Select
a = 1
b = Range("j65530").End(xlUp).Row
Range("a" & a & ":j" & b).Copy
End Sub
Thanks in advance
|