ligBD = 4
With shBD
[B] Do While .Cells(ligBD, 4) <> "Blanc" 'Les blancs sont ignorés[/B]
Cells(lig, 1) = .Cells(ligBD, 1)
Cells(lig, 2) = .Cells(ligBD, 2)
Cells(lig, 3) = .Cells(ligBD, 2) & " " & .Cells(ligBD, 4) & " " & Left(.Cells(ligBD, 5), 1) & " - " _
& .Cells(ligBD, 8) & " " & Left(.Cells(ligBD, 9), 1)
ligBD = ligBD + 1
lig = lig + 1
Loop
'Cas nombre impair d'inscrits
If Cells(ligBD, 1) Mod 2 > 0 Then
[B][I]'Ajoute une équipe Blanc normalement la seule si nombre équipes est impair[/I][/B]
Cells(lig, 1) = .Cells(ligBD, 1)
Cells(lig, 2) = .Cells(ligBD, 2)
Cells(lig, 3) = .Cells(ligBD, 2) & " " & .Cells(ligBD, 4) & " " & Left(.Cells(ligBD, 5), 1) & " - " _
& .Cells(ligBD, 8) & " " & Left(.Cells(ligBD, 9), 1)
End If
End With