I need to select range "C6", then select all rows until a blank one using xlDown. I then need to combine that with column "Y" to then clear those contents.
For example if there are 25 rows of data as determined by xlDown starting at "C6", I need to create the range "C6:Y25" so I can use selection.ClearContents to delete the records.
Sub Delete_ALL()
Dim Warning As String
Dim lrow As Long
Warning = "Are you sure you want to delete your whole database of borrowers?"
Answer = MsgBox(Warning, vbQuestion + vbYesNo, "DELETE ALL???")
If Answer = vbNo Then
Exit Sub
End If
Range("C6").Select
lrow = Range(Selection, Selection.End(xlDown)).Select
'Selection.ClearContents
End Sub