Thanks Per,
I actually decided to select the range of the first column, then use the Go
To, Special, Blanks and then Delete entire rows.
I appreciate your help. Here is my code. I comment out a lot, but I am a
novice at this. Thx!
Sub Delete_Blank_Rows()
'
' Delete Blank Object Code Rows, Selects Expenditures sheet
'
Sheets("Expenditures").Select
'
' Delete Blank Object Code Rows on Budget Entries
'
Range("TblBudgetExp[[#All],[Obj]]").Select
Range("B268").Activate
Selection.SpecialCells(xlCellTypeBlanks).EntireRow.Delete
'
' Delete Blank Rows on Transfers
'
Range("TblTransfersExp[[#All],[Obj]]").Select
Range("B259").Activate
Selection.SpecialCells(xlCellTypeBlanks).EntireRow.Delete
'
' Delete Blank Rows on Actuals
'
Range("TblActualsExp[[#All],[Obj ]]").Select
Range("B224").Activate
Selection.SpecialCells(xlCellTypeBlanks).EntireRow.Delete
'
' Selects Revenue Sheet
'
Sheets("Revenue").Select
'
' Delete Blank Rows on Revenue Budget Entries
'
Range("TblBudgetRev[[#All],[Obj]]").Select
Range("B21").Activate
Selection.SpecialCells(xlCellTypeBlanks).EntireRow.Delete
End Sub
I hope I don't comment out on this, but I'm a novice and I try to sleep
between these sessions.
Thx!
JC
JC