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
Même pas curieux de savoir d'où peut venir cette erreur ?????j'ai teste avec Tri +tasser j'ai une erreur de compilation
Dim n&
est la même chose que Dim n As Long
Dim ... n As Long
;Dim ... n&
, n&
➯ Dim derlig&, t, i&, j&
Dim derlig&, t, i&