Sub Tasser()
Dim derlig&, t, i&, n&, j&
Sheets("Inscriptions").Select
derlig = Cells(Rows.Count, "a").End(xlUp).Row
t = Range(Cells(4, "c"), Cells(derlig, "c"))
For i = 1 To UBound(t)
If t(i, 1) <> "" Then
n = n + 1
t(n, 1) = t(i, 1)
End If
Next i
For i = n + 1 To UBound(t): t(i, 1) = Empty: Next
Range(Cells(4, "c"), Cells(derlig, "c")) = t
End Sub