dim i as integer
i = 5
[a1:b & i] = "That"
always? why would I bother EVER typing out Range then?
Hi,
An interesting read here:
http://www.xtremevbtalk.com/showthread.php?t=310029
Range("A1:D100") cannot be done on its own using Cells().
Range("A1") - We all know
Cells(1,1)
Advantage: you can use Column NUMBER or Letter (can't with Range)
Disadvantage: Can only refer to 1 single cell or ALL Cells, not a finite range like A1:B10
[A1]
Advantage: Easy to write...
Disadvantage: Cannot use Variables or Column Number.