> If ActiveCell.Worksheet.Type = xlWorksheet Then
Thanks for the suggestion.
In this case, you can't actually get to a cell on the worksheet to use
ActiveCell, though.
I have a plan now that will work, though. Thanks for your suggestion. I'm
still not quite sure what Oracle did, but it doesn't matter any more.
I tried the Type idea, and the module named CODE reports constant -4167, the
same as any other sheet, which must be the constant for xlWorsksheet
My need is to run up through the worksheets performing some code to transfer
some things out to another workbook, but the code needs not to work on this
one oddball sheet.
I've discovered that the workbooks is making a distinction between Sheets
and Worksheets
AtiveWorbook.Sheets(1) is the CODE which I do not want to use, but
ActiveWorkbook.Worksheets(1) is the first visible regular sheet, which I want.
So that will work.
Thanks.
|