Bonjour à tous,
Très moyen en VBA, je bloc sur un petit souci.
Je me retrouve avec 2 x 2 Sub du même nom et je n'arrive pas à les regrouper.
Quelqu'un peut-il m'aider à résoudre ce problème.
D'avance, je vous remercie pour votre aide.
voici le code
Très moyen en VBA, je bloc sur un petit souci.
Je me retrouve avec 2 x 2 Sub du même nom et je n'arrive pas à les regrouper.
Quelqu'un peut-il m'aider à résoudre ce problème.
D'avance, je vous remercie pour votre aide.
voici le code
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Range("G30")) Is Nothing Then
If Range("G30") = "Exaprint" Then
Rows("50:160").EntireRow.Hidden = True
Rows("33:49").EntireRow.Hidden = False
Else
Rows("50:160").EntireRow.Hidden = False
Rows("33:49").EntireRow.Hidden = True
End If
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Range("j14") <> 0 Then
If Range("k11") = 0 Then
Range("k11").Interior.ColorIndex = 3
MsgBox ("Veuillez saisir le format du document ouvert"), vbCritical, "ATTENTION"
Else
If Range("j14") <> 0 Then
If Range("L11") = 0 Then
Range("L11").Interior.ColorIndex = 3
MsgBox ("Veuillez saisir le format du document ouvert"), vbCritical, "ATTENTION"
Else
If Range("k11") >= 0 Then
Range("k11").Interior.ColorIndex = 2
If Range("L11") >= 0 Then
Range("L11").Interior.ColorIndex = 2
Cancel = True
End If
End If
End If
End If
End If
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim olApp As Outlook.Application
Dim Cible As Outlook.ContactItem
Dim dossierContacts As Outlook.MAPIFolder
Dim Resultat As String
If Not Target.Address = "$D$3" Then Exit Sub
Set olApp = New Outlook.Application
Set dossierContacts = _
olApp.GetNamespace("MAPI").GetDefaultFolder(olFolderContacts)
For Each Cible In dossierContacts.Items
Resultat = Resultat & Cible.LastName & ","
Next
Range("D3").Validation.Delete
Range("D3").Validation.Add xlValidateList, _
Formula1:=Left(Resultat, Len(Resultat) - 1)
Set Cible = Nothing
Set dossierContacts = Nothing
'olApp.Quit
Set olApp = Nothing
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Dim olApp As Outlook.Application
Dim Cible As Outlook.ContactItem
Dim dossierContacts As Outlook.MAPIFolder
Dim Recherche As String
If Not Target.Address = "$D$3" Then Exit Sub
On Error GoTo Fin
Application.EnableEvents = False
Recherche = Range("D3")
Set olApp = New Outlook.Application
Set dossierContacts = olApp.GetNamespace("MAPI").GetDefaultFolder(olFolderContacts)
Set Cible = dossierContacts.Items.Find("[LastName] = '" & Recherche & "'")
If Not Cible Is Nothing Then
Range("G1") = Cible.CompanyName
Range("G2") = Cible.FullName
Range("G3") = Cible.BusinessAddressStreet
Range("G4") = Cible.BusinessAddressPostalCode
Range("H4") = Cible.BusinessAddressCity
End If
Fin:
Application.EnableEvents = True
Set Cible = Nothing
Set dossierContacts = Nothing
'olApp.Quit
Set olApp = Nothing
End Sub