This code will delete the entire row if it finds an empty cell in column G. What I need to do is clear the cell in column A if the cell in column G is blank.
On Error Resume Next ' In case there are no blanks
Columns("G:G").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
ActiveSheet.UsedRange 'Resets UsedRange for Excel 97
Try this: