I've noticed that you cannot select cells from different sheets in successive lines, you have to do it in two moves, a la:
Sheet("A").select
Sheet("B").select
Range("A1").select
instead of just:
Sheet("A").select
Sheet("B").Range("A1").select
anyone else know if this is just how it is or is it cause there's some other problem causing this ?
C