Many thanks for that, I have never come across that bit of syntax before
Range(address)(cells in)
Therefor presumably the following could be used to step through a selected
range!
For t = 1 To Selection.Count
temp = Range(Selection.Address)(t).Value
Next t
I don't know if it would have any benifit over my usual
for each rng in selection
temp = rng.value
next rng
But interesting never the less