Salut le forum
Une petite macro qui trie les chiffres par ordre croissant sur la date de sortie,
je ne touche pas au complémentaire.
Le fichier https://www.excel-pratique.com/~files/doc/LoterieAvecTri.xlsm (CTRL+SHIFT+T pour lancer le tri)
Sub Tri_No()
Dim I
For I = 2 To Range("A1").End(xlDown).Row
Range(Cells(I, 4), Cells(I, 9)).Sort Key1:=Range("D" & I), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlLeftToRight, _
DataOption1:=xlSortNormal
Next I
End Sub
Mytå