I have the following sheet in which user input data.
https://dl.dropboxusercontent.com/u/83126653/user%20form%201.png
Now I am using this code to delete the last row
Sub DeleteLastRow()
Sheets("User Form Engine data 1 Entry").UsedRange. _
Range("A2:K2").End(xlDown).Select
Range(Selection, Selection.End(xlToRight)).ClearContents
End Sub
I would like to clear all the last row if even one cell from the row has something in it. need help. Thanks in advance