Inserer un mot de passe dans macro existante
Résolu/Fermé
Eaheru
Messages postés
197
Date d'inscription
mercredi 23 juin 2010
Statut
Membre
Dernière intervention
12 mars 2018
-
Modifié par Eaheru le 29/06/2010 à 16:18
Eaheru Messages postés 197 Date d'inscription mercredi 23 juin 2010 Statut Membre Dernière intervention 12 mars 2018 - 29 juin 2010 à 17:23
Eaheru Messages postés 197 Date d'inscription mercredi 23 juin 2010 Statut Membre Dernière intervention 12 mars 2018 - 29 juin 2010 à 17:23
A voir également:
- Inserer un mot de passe dans macro existante
- Voir mot de passe wifi android - Guide
- Mot de passe administrateur - Guide
- Trousseau mot de passe iphone - Guide
- Identifiant et mot de passe - Guide
- Mettre un mot de passe sur un dossier - Guide
1 réponse
Eaheru
Messages postés
197
Date d'inscription
mercredi 23 juin 2010
Statut
Membre
Dernière intervention
12 mars 2018
20
29 juin 2010 à 17:23
29 juin 2010 à 17:23
A final j'ai trouvé, je le post au cas ou cela puisse dépanner quelqu'un :
'Option Explicit
'Private Sub Worksheet_Change(ByVal Target As Range)
' Dim lig As Long
' lig = Target.Row
' If lig = 1 Then Exit Sub 'non actif sur ligne 1
' ActiveSheet.Unprotect Password:="test"
' Cells(lig, 11).Locked = Not (Application.CountA(Cells(lig, 1).Resize(1, 8)) = 8)
' If Not Intersect(Target, Cells(lig, 2).Resize(1, 7)) Is Nothing Then
' If Application.CountA(Cells(lig, 2).Resize(1, 7)) = 7 Then
' Cells(lig, 1) = Now()
' Else
' Cells(lig, 1) = ""
' End If
' ElseIf Not Intersect(Target, Range("I" & lig)) Is Nothing Then
' Cells(lig, 1).Resize(1, 10).Locked = (Cells(lig, 9) <> "")
' Cells(lig, 10) = Now()
' End If
' ActiveSheet.Protect Password:="test", DrawingObjects:=False, Contents:=True, Scenarios:=False
' ActiveSheet.EnableSelection = xlUnlockedCells
'End Sub
'Option Explicit
'Private Sub Worksheet_Change(ByVal Target As Range)
' Dim lig As Long
' lig = Target.Row
' If lig = 1 Then Exit Sub 'non actif sur ligne 1
' ActiveSheet.Unprotect Password:="test"
' Cells(lig, 11).Locked = Not (Application.CountA(Cells(lig, 1).Resize(1, 8)) = 8)
' If Not Intersect(Target, Cells(lig, 2).Resize(1, 7)) Is Nothing Then
' If Application.CountA(Cells(lig, 2).Resize(1, 7)) = 7 Then
' Cells(lig, 1) = Now()
' Else
' Cells(lig, 1) = ""
' End If
' ElseIf Not Intersect(Target, Range("I" & lig)) Is Nothing Then
' Cells(lig, 1).Resize(1, 10).Locked = (Cells(lig, 9) <> "")
' Cells(lig, 10) = Now()
' End If
' ActiveSheet.Protect Password:="test", DrawingObjects:=False, Contents:=True, Scenarios:=False
' ActiveSheet.EnableSelection = xlUnlockedCells
'End Sub