J'ai trouvé !!!
Il faut modifier le Workbook ainsi :
Private Sub Workbook_Open()
For i = 1 To Worksheets.Count
Worksheets(i).Protect Password:="motdepasse", UserInterfaceOnly:=True
Next
For i = 1 To Sheets.Count
Set f = Sheets(i)
Set Y = f.Cells.Find(Date)
'n = f.Range("A:B").Find("EQUIPE1)", lookat:=xlWhole).Row
If Not Y Is Nothing Then
col = Y.Column
lgn = f.Range("A:B").Find("EQUIPE 1", lookat:=xlWhole).Row
For ln = lgn To f.Range("A" & f.Rows.Count).End(xlUp).Row Step 6
f.Cells((3 * ln - 3 * lgn + 24) / 6, 13).Value = f.Cells(ln, col).Value
f.Cells((3 * ln - 3 * lgn + 24) / 6, 14).Value = f.Cells(ln + 2, col).Value
f.Cells((3 * ln - 3 * lgn + 24) / 6, 15).Value = f.Cells(ln + 4, col).Value
Next ln
Exit For
End If
Next i
For i = 1 To Sheets.Count
Worksheets(i).ScrollArea = "A1:V200"
'
'
'
'
'
Next
f.Activate
End Sub
Bonne journée