Posted to microsoft.public.excel.programming
|
|
CODE 2 SELECT SHEETS LISTED IN A RANGE
On Error Resume Next
With WorkSheets("Sheet1")
.Activate
.Range("A1:A10").SpecialCells(xlCellTypeConstants, 23).Select
End With
"Faraz A. Qureshi" a écrit dans le message de
groupe de discussion : ...
What code would select sheets that are named in the range: Sheet1!A1:A10
ignoring blanks cells, if any?
Thanx in advance.
--
Best Regards,
Faraz
|