the short answer is, you can't.
however, you don't have to select a cell, a worksheet, a workbook, or
any other object in order to manipulate it.
to use select, first you'd have to activate worksheet B (for
instance), and then re-select worksheet A after you've done whatever
you want to do in worksheet B.
it's a different concept alltogether to identify the worksheets and
then work with them without actually selecting them.
for instance (just quickie code) the way you're doing it:
(starting in Worksheet A)
worksheetB.select
range("a1").select
selection.copy
worksheetA.select
range("a1").select
selection.paste
OR
(after declaring all the variables)
worksheetA.range("a1").value = worksheetB.range("a1").value
hope it helps
susan
Post by MekinnikI am trying to select all the cells from column 'A' of the non-active worksheet