I have found a macro to make this work
Option Explicit
Sub CheckColumnB()
Dim LastRow As Long, i As Long
LastRow = Range("B" & Rows.Count).End(xlUp).Row
Application.ScreenUpdating = False
For i = LastRow To 1 Step -1
If Cells(i, "B").Value = " " Then Rows(i).Delete (xlShiftUp)
Next i
Application.ScreenUpdating = True
End Sub
However I want to apply the maxcro to three different sheets. Sheet2, Sheet3, and Sheet4. How would I accomplish this?
Also is there a way to start the macro when opening the worksheet?
Should I have presented this to the VBA forum>
Thanks
Bookmarks