Hello, I have written the following code to delete all rows where the cell in column J is Blank, but currently it is deleting all rows
Dim uLastRow As Long
Dim u As Long
uLastRow = Cells(Rows.Count, "d").End(xlUp).Row
For u = uLastRow To 1 Step -1
If Cells(u, "j").Value = ""...