Envoyer une feuille Excel en gardant les macros

Bonjour à tous,

J’ai actuellement un problème, j’ai crée un classeur Excel permettant à quelqu’un d’envoyer une feuille (juste une feuille) de ce classeur par mail à une autre personne. Cependant lorsque on ouvre la feuille envoyé, les macros qui s’y trouve ne s’exécutent plus :

« Impossible d’éxécuter la macro :Formulaire… .xlsx’ !FormulaireIndus_Bouton1_Clic’. Il est possible qu’elle ne soit pas disponible dans ce classeur ou que toutes les macros soient désactivées. »

J’ai vérifier et toutes les macros sont activées, le problème étant que lorsque j’envoi la feuille la macro l’intègre dans un classeur différent donc obligé d’aller chercher la macro manuellement.

Si quelqu’un peut m’aider à trouver ce qui ne va pas pour que je puisse envoyer une feuille du classeur SEUL et que les macros à l’intérieur de celle-ci reste disponible automatiquement.

Merci par avance.

Voici mon code qui envoit la feuille de mon classeur:

Sub Bouton2_Clic()
'Working in 2000-2010
   Dim FileExtStr As String
    Dim FileFormatNum As Long
    Dim Sourcewb As Workbook
    Dim Destwb As Workbook
    Dim TempFilePath As String
    Dim TempFileName As String
    Dim OutApp As Object
    Dim OutMail As Object
    With Application
        .ScreenUpdating = False
        .EnableEvents = False
    End With
    Set Sourcewb = ActiveWorkbook
    'Copy the sheet to a new workbook
   Sheets("Formulaire Indus").Copy
    Set Destwb = ActiveWorkbook
    'Determine the Excel version and file extension/format
   With Destwb
        If Val(Application.Version) < 12 Then
            'You use Excel 2000-2003
           FileExtStr = ".xls": FileFormatNum = -4143
        Else
            'You use Excel 2007-2010, we exit the sub when your answer is
           'NO in the security dialog that you only see  when you copy
           'an sheet from a xlsm file with macro's disabled.
           If Sourcewb.Name = .Name Then
                With Application
                    .ScreenUpdating = True
                   .EnableEvents = True
                End With
                MsgBox "Your answer is NO in the security dialog"
                Exit Sub
            Else
                Select Case Sourcewb.FileFormat
                Case 51: FileExtStr = ".xlsx": FileFormatNum = 51
                Case 52:
                    If .HasVBProject Then
                        FileExtStr = ".xlsm": FileFormatNum = 52
                    Else
                        FileExtStr = ".xlsx": FileFormatNum = 51
                    End If
                Case 56: FileExtStr = ".xls": FileFormatNum = 56
                Case Else: FileExtStr = ".xlsb": FileFormatNum = 50
                End Select
            End If
        End If
    End With
    '    'Change all cells in the worksheet to values if you want
   '    With Destwb.Sheets(1).UsedRange
   '        .Cells.Copy
   '        .Cells.PasteSpecial xlPasteValues
   '        .Cells(1).Select
   '    End With
   '    Application.CutCopyMode = False
    'Save the new workbook/Mail it/Delete it
   TempFilePath = Environ$("temp") & "\"
    TempFileName = "Formulaire" & " " _
                 & Format(Now, "dd-mmm-yy ") & "Référence " & (Range("e6"))
    Set OutApp = CreateObject("Outlook.Application")
    Set OutMail = OutApp.CreateItem(0)
    With Destwb
        .SaveAs TempFilePath & TempFileName & FileExtStr, _
                FileFormat:=FileFormatNum
        On Error Resume Next
        With OutMail
            .To = ""
            .CC = ""
            .BCC = ""
            .Subject = "Modification d'article " & Range("e6").Value
            .Body = ("Bonjour,") & vbCrLf & (" Ci-joint la demande de modification d'article.") & vbCrLf & vbCrLf & ("Cordialement") 
            .Attachments.Add Destwb.FullName
            'You can add other files also like this
           '.Attachments.Add ("C:\test.txt")
           .VotingOptions = "Valider;Refuser"
           .Display  'or use .Display
       End With
        On Error GoTo 0
        .Close SaveChanges:=False
    End With
    'Delete the file you have send
   Kill TempFilePath & TempFileName & FileExtStr
    Set OutMail = Nothing
    Set OutApp = Nothing
    With Application
        .ScreenUpdating = True
        .EnableEvents = True
    End With
End Sub

Et mon code qui se trouve dans la feuille:

Sub FormulaireIndus_Bouton1_Clic()
Worksheets("Formulaire Indus").Select
'Working in 2000-2010
   Dim FileExtStr As String
    Dim FileFormatNum As Long
    Dim Sourcewb As Workbook
    Dim Destwb As Workbook
    Dim TempFilePath As String
    Dim TempFileName As String
    Dim OutApp As Object
    Dim OutMail As Object
    With Application
        .ScreenUpdating = False
        .EnableEvents = False
    End With
    Set Sourcewb = ActiveWorkbook
    'Copy the sheet to a new workbook
   Workbooks("Demande de Modification").Sheets("Formulaire").Copy
    Set Destwb = ActiveWorkbook
    'Determine the Excel version and file extension/format
   With Destwb
        If Val(Application.Version) < 12 Then
            'You use Excel 2000-2003
           FileExtStr = ".xls": FileFormatNum = -4143
        Else
            'You use Excel 2007-2010, we exit the sub when your answer is
           'NO in the security dialog that you only see  when you copy
           'an sheet from a xlsm file with macro's disabled.
           If Sourcewb.Name = .Name Then
                With Application
                    .ScreenUpdating = True
                    .EnableEvents = True
                End With
                MsgBox "Your answer is NO in the security dialog"
                Exit Sub
            Else
                Select Case Sourcewb.FileFormat
                Case 51: FileExtStr = ".xlsx": FileFormatNum = 51
                Case 52:
                    If .HasVBProject Then
                        FileExtStr = ".xlsm": FileFormatNum = 52
                    Else
                        FileExtStr = ".xlsx": FileFormatNum = 51
                    End If
                Case 56: FileExtStr = ".xls": FileFormatNum = 56
                Case Else: FileExtStr = ".xlsb": FileFormatNum = 50
                End Select
            End If
        End If
    End With
    '    'Change all cells in the worksheet to values if you want
   '    With Destwb.Sheets(1).UsedRange
   '        .Cells.Copy
   '        .Cells.PasteSpecial xlPasteValues
   '        .Cells(1).Select
   '    End With
   '    Application.CutCopyMode = False
    'Save the new workbook/Mail it/Delete it
   TempFilePath = Environ$("temp") & "\"
    TempFileName = "Formulaire de Modification" & " " _
                  & "Référence " & (Range("e6"))
    Set OutApp = CreateObject("Outlook.Application")
    Set OutMail = OutApp.CreateItem(0)
    With Destwb
        .SaveAs TempFilePath & TempFileName & FileExtStr, _
                FileFormat:=FileFormatNum
        On Error Resume Next
        With OutMail
            .To = Range("c6")
            .CC = ""
            .BCC = ""
            .Subject = "Modification d'article " & Range("e6").Value
            .Body = ("Bonjour,") & vbCrLf & (" Ci-joint la demande de modification d'article avec les prix renseignés.") & vbCrLf & vbCrLf & ("Merci de Valider pour diffusion.") & vbCrLf & ("Cordialement")       
            .Attachments.Add Destwb.FullName
            'You can add other files also like this
           '.Attachments.Add ("C:\test.txt")
            .Display  'or use .Display
       End With
        On Error GoTo 0
        .Close SaveChanges:=False
   End With
    'Delete the file you have send
   Kill TempFilePath & TempFileName & FileExtStr
    Set OutMail = Nothing
    Set OutApp = Nothing
    With Application
        .ScreenUpdating = True
        .EnableEvents = True
    End With
End Sub

bonjour

je pense que c'est plus facile d'envoyer un fichier exemple.

merci

Rechercher des sujets similaires à "envoyer feuille gardant macros"