Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The following code (below) has been pieced together from individual modules
and works when run from the worksheet titled "Charts!" When I try to run it from another sheet I get the following message : Runtime error '1004' Selection method of range class failed and the debug highlights the following line of code: Range("Charts!b25:b56").Select Sub Delete_CR() Dim Rng As Range, rng1 As Range On Error Resume Next Set Rng = Range("Charts!B25:IV26").SpecialCells(xlFormulas, xlErrors) On Error GoTo 0 If Not Rng Is Nothing Then Rng.EntireColumn.Delete Dim n As Long, lastrow As Long lastrow = Range("Charts!B52").End(xlUp).Row For n = lastrow To 2 Step -1 If Cells(n, 2) = "Grand Total" Or Cells(n, 2) = "0" _ Then Cells(n, 2).EntireRow.Delete Next n Range("Charts!b25:b56").Select For Each Rng In Selection.Cells If Rng.Interior.ColorIndex = 1 Then Rng.EntireRow.Hidden = True End If Next Rng End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VB code is not working like it should | Excel Programming | |||
Code not working | Excel Programming | |||
Code not Working - Help please | Excel Programming | |||
Code not working | Excel Programming | |||
For Each Code Not Working | Excel Programming |