Sub Worksheet_Activate()
Dim DL%, L%, Ind%
Application.ScreenUpdating = False
[C7:M25].ClearContents: [C39:M59].ClearContents
With Sheets("Options")
DL = .Range("A65500").End(xlUp).Row
' Traitement Corbeilles
Ind = 7
For L = 5 To DL
If LCase(.Cells(L, "I")) = "x" Then
Cells(Ind, "C") = .Cells(L, "A")
Cells(Ind, "D") = .Cells(L, "C")
Cells(Ind, "M") = .Cells(L, "F")
Ind = Ind + 1
End If
Next L
' Traitement Options
Ind = 39
For L = 5 To DL
If LCase(.Cells(L, "G")) = "x" Then
Cells(Ind, "C") = .Cells(L, "A")
Cells(Ind, "D") = .Cells(L, "C")
Cells(Ind, "M") = .Cells(L, "F")
Ind = Ind + 1
End If
Next L
End With
Application.ScreenUpdating = True
End Sub