Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Another guess: Your code is behind a worksheet and the unqualified range
references belong to the sheet that owns the code--not the newly added worksheet: Instead of: Set tempCellRange = Worksheets(toBeSpecdName).Range(Cells(rowStartPos, _ colStartPos), Cells(rowEndPos, colStartPos)) Try: with worksheets(tobespecdname) set tempcellrange = .range(.cells(rowstartpos,colstartpos), _ .cells(rowendpos,colstartpos)) end with (watch for typos!) And notice the dots. That means that thing belongs to the previous With's object (in this case worksheets(tobespecdname). "robbinma <" wrote: Hmm. The command worked ok before the add worksheet and failed afterwards without any changes to the variables. I have just found the varType function and this does what I wanted on a cell level. I wanted to use the Special Cells on a column but the problem can be solved at a cell level although it will take a bit longer to run. Thanks, Mark --- Message posted from http://www.ExcelForum.com/ -- Dave Peterson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 error "some chart types cannot be combined with other chart types. Select a different chart types" | Charts and Charting in Excel | |||
Identifying the every nth document in a column | Excel Discussion (Misc queries) | |||
Identifying the row and column of a table value | Excel Discussion (Misc queries) | |||
Needed: Chart that combines clustered column and stacked column types | Charts and Charting in Excel | |||
How do I mix column chart types? | Charts and Charting in Excel |