Bonjour a tous,
je veux créer un bouton pour activer la VBA ci-dessous, cette VBA est dans feuil1 (feuil1) et n'est pas une Macro. comment faire?
Option Explicit
Private Sub CommandButton1_Click()
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [c2]) Is Nothing Then Exit Sub
Dim etat As Boolean
With Application
.ScreenUpdating = False
.DisplayAlerts = False
etat = .AskToUpdateLinks
.AskToUpdateLinks = False
Workbooks.Open(Filename:=ThisWorkbook.Path & "\int.xlsm", Password:="a").Close True
.AskToUpdateLinks = etat
End With
ThisWorkbook.Save
End Sub
Merci pour votre aide.
je veux créer un bouton pour activer la VBA ci-dessous, cette VBA est dans feuil1 (feuil1) et n'est pas une Macro. comment faire?
Option Explicit
Private Sub CommandButton1_Click()
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [c2]) Is Nothing Then Exit Sub
Dim etat As Boolean
With Application
.ScreenUpdating = False
.DisplayAlerts = False
etat = .AskToUpdateLinks
.AskToUpdateLinks = False
Workbooks.Open(Filename:=ThisWorkbook.Path & "\int.xlsm", Password:="a").Close True
.AskToUpdateLinks = etat
End With
ThisWorkbook.Save
End Sub
Merci pour votre aide.