PDA

View Full Version : Solved: deleting blank rows in a specific range



Beatrix
06-14-2012, 07:31 AM
Hi Everyone

I use below script to delete blank rows in column B in Summary Sheet. I need to change the range as "B14:B53" instead of entire column B. Can anyone help me on this please??

Cheers
Yeliz


Sub DeleteBlankRows()
Dim Firstrow As Long
Dim Lastrow As Long
Dim Lrow As Long
Dim CalcMode As Long
Dim ViewMode As Long

With Application
CalcMode = .Calculation
.Calculation = xlCalculationManual
.ScreenUpdating = False
End With

'We use the ActiveSheet but you can replace this with
'Sheets("MySheet")if you want
With Sheets("Summary")

'We select the sheet so we can change the window view
.Select

'If you are in Page Break Preview Or Page Layout view go
'back to normal view, we do this for speed
ViewMode = ActiveWindow.View
ActiveWindow.View = xlNormalView

'Turn off Page Breaks, we do this for speed
.DisplayPageBreaks = False

'Set the first and last row to loop through
Firstrow = .UsedRange.Cells(1).Row
Lastrow = .UsedRange.Rows(.UsedRange.Rows.Count).Row

'We loop from Lastrow to Firstrow (bottom to top)
For Lrow = Lastrow To Firstrow Step -1

'We check the values in the B column in this example
With .Cells(Lrow, "B")

If Not IsError(.Value) Then

If .Value = 0 Then .EntireRow.Delete
'This will delete each row with the Value 0
'in Column B, case sensitive.

End If

End With

Next Lrow

End With

ActiveWindow.View = ViewMode
With Application
.ScreenUpdating = True
.Calculation = CalcMode
End With

End Sub

Bob Phillips
06-14-2012, 07:37 AM
Change

For Lrow = Lastrow To Firstrow Step -1


to

For Lrow = 53 To 14 Step -1

Beatrix
06-14-2012, 07:53 AM
Thanks very much xld..

Cheers
Yeliz