Basta especificar o intervalo e usar a macro:
Sub Delete()
Range("A1:A50").Select
Selection.ClearContents
end sub
Onde A1:A50
é o intervalo após a célula em branco.
Se você se opõe a macros, pode fazê-lo manualmente por:
1. Ctrl+G
2. Type the range in. Hit enter.
3. Then just hit the 'Delete' key.