Related:
- Excel blank row deletion
- Saints row 2 cheats - Guide
- Excel mod apk for pc - Download - Spreadsheets
- Number to words in excel - Guide
- Excel marksheet - Guide
- How to delete a row in a table in word - Guide
1 response
Go to Tool > Macro > Visual Basic Editor
Type in the following into the page you want to delete the blank line from
-------------------------------------------------------------------------------------------------------------
Sub DeleteHiddenRows()
Dim iRow As Long
With Application
.Calculation = xlCalculationManual
.EnableEvents = False
.ScreenUpdating = False
With ActiveSheet.UsedRange
For iRow = .Row + .Rows.Count - 1 To .Row Step -1
If Rows(iRow).Hidden Then Rows(iRow).Delete
Next iRow
End With
.Calculation = xlCalculationAutomatic
.EnableEvents = True
.ScreenUpdating = True
End With
End Sub
-------------------------------------------------------------------------------------------------------------
Thats it :o)
Type in the following into the page you want to delete the blank line from
-------------------------------------------------------------------------------------------------------------
Sub DeleteHiddenRows()
Dim iRow As Long
With Application
.Calculation = xlCalculationManual
.EnableEvents = False
.ScreenUpdating = False
With ActiveSheet.UsedRange
For iRow = .Row + .Rows.Count - 1 To .Row Step -1
If Rows(iRow).Hidden Then Rows(iRow).Delete
Next iRow
End With
.Calculation = xlCalculationAutomatic
.EnableEvents = True
.ScreenUpdating = True
End With
End Sub
-------------------------------------------------------------------------------------------------------------
Thats it :o)