E
excelent
I got a huge list of data where i have to test and remove dublicates
The list: Column A=Country, B=Institusion, C=City - all text values
List is in Range("A1:C9600")
To make this fast i use a array like : X=Range("A1:C9600")
Then i test and remove dublicate with cells(r,1)="" and so on
Problem is, when im don X array got a lot of values="" (emty)
I no I can write'em back with Range("A1:C9600")=X
and then mark all emty cells and delete rows
but i think this is too slow
Question is, how do i remove all emty "values" in X array
before i write'em back to the sheet ?
thanks in advance for any help
The list: Column A=Country, B=Institusion, C=City - all text values
List is in Range("A1:C9600")
To make this fast i use a array like : X=Range("A1:C9600")
Then i test and remove dublicate with cells(r,1)="" and so on
Problem is, when im don X array got a lot of values="" (emty)
I no I can write'em back with Range("A1:C9600")=X
and then mark all emty cells and delete rows
but i think this is too slow
Question is, how do i remove all emty "values" in X array
before i write'em back to the sheet ?
thanks in advance for any help