Bonjour
Au cas où...
Voici le code que l'on m'avait donné ici (c'est noté
) pour un fichier qui s'ouvre en supprimant le masquage des données
La macro écrit le MP (totau), fait le travail, puis reprotège le fichier
Si ça peut te servir....
Sub Filter_Removal_But_Keeping_The_AutoFilter()
'
'suppression du fltrage à l'ouverture
'macro de _Thierry sur
www.excel-downloads.com
'
Dim WS As Worksheet
Dim MyPassword As String
MyPassword = "totau"
Set WS = ThisWorkbook.Worksheets("Liste")
If WS.AutoFilterMode = True Then
If WS.FilterMode = True Then
WS.Unprotect Password:=MyPassword
WS.ShowAllData
WS.Protect Password:=MyPassword, UserInterfaceOnly:=True, AllowFiltering:=True
End If
End If
End Sub