Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Can someone explain why this code generates "Object doesn't support this property or method" error? Sub LoopThruWkBooksWkSheets() Dim wb as WorkBook Dim ws as WorkSheet For Each wb In Workbooks For Each ws In Worksheets wb.ws.Cells.ColumnWidth = 3 ---- error line Next Next End Sub The idea is to loop through all open workbooks and all worksheets therein to reset the columnwidths to 3. The above code can be tweaked to work by activating each Workbook as in: Sub LoopThruWkBooksWkSheets() Dim wb as WorkBook Dim ws as WorkSheet For Each wb In Workbooks wb.activate For Each ws In Worksheets ws.Cells.ColumnWidth = 3 ---- error line Next Next End Sub ...but this is arguably not elegant even by turning off screenupdating. TIA David -- davidm ------------------------------------------------------------------------ davidm's Profile: http://www.excelforum.com/member.php...o&userid=20645 View this thread: http://www.excelforum.com/showthread...hreadid=532532 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Looping through 2 workbooks | Excel Discussion (Misc queries) | |||
Excel VBA - Help looping through all but 2 workbooks | Excel Programming | |||
Looping through all workbooks | Excel Programming | |||
Looping through all workbooks | Excel Programming | |||
Looping through all workbooks | Excel Programming |