Consider this code:
Dim array As Variant
array = Range("a1:a1000000").Value2
Knowing that the A column only contains boolean (1 or 0) numbers, what's the most efficient way to shrink the array converting its data type to boolean?
Consider this code:
Dim array As Variant
array = Range("a1:a1000000").Value2
Knowing that the A column only contains boolean (1 or 0) numbers, what's the most efficient way to shrink the array converting its data type to boolean?