Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi everyone,
Is there any function in VBA that can determine whether subtotals are displayed on a particular sheet? Something like aSheet.HasSubtotals that returns True or False would be nice. It doesn't exist, though. In addition, a macro of mine contains the following code, that cleans up a certain worksheet before filling the sheet with new data: intOutputRij = 4 Set shtOutput = ActiveWorkbook.Sheets("Output") With shtOutput.Range("A" & Format(intOutputRij) & ":IV65536") .ClearContents ' remove old data .Font.Bold = False .Range("A:A").RemoveSubtotal ' error 1004 when there's no subtotal End With Error 1004 is trapped with a Resume Next. The RemoveSubtotal method doesn't work as nicely as it should. Sometimes I do get a clean worksheet, but sometimes it leaves the subtotals untouched, resulting in about 7 or more levels to collapse/expand, or in a movement down, allowing me to collapse/expand empty rows. Any suggestions? Thank you, Cooz |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Subtotals problem: Excel 2003 (not, AFAIK, the nested subtotals bug) | Excel Discussion (Misc queries) | |||
Original subtotals should not be within nested subtotals in excel | Excel Worksheet Functions | |||
Subtotals function offset subtotals summary | Excel Programming | |||
Subtotals: Nested subtotals below higher subtotal | Excel Discussion (Misc queries) | |||
Problem with nested subtotals, placing secondary subtotals BELOW . | Excel Discussion (Misc queries) |