MONTREAL2020
XLDnaute Junior
Bonjour,
Un petit caprice d'un profane en VBA
J'ai trouvé ce code que j'utilise et qui fonctionne parfaitement bien et me permet d'envoyer une plage de cellules d'un fichier original coller dans un nouveau classeur. Le fichier (classeur) est une copie en valeurs de ma plage.
Serait-il possible de garder juste une colonne avec les formules, la colonne en question contient une Somme des cellules ( Ex. Cellule T74 contient la somme de E1:S1)
Merci à vous
********************************************************************************************************************
Option Explicit
'Ne pas oublier :
'de cocher la référence Microsoft Outlook xx.0 object library dans l'éditeur VBE (outil>références)
Sub EnvoiMailFeuilleActive_Watch_List()
Dim FileExtStr As String
Dim FileFormatNum As Long
Dim Sourcewb As Workbook
Dim Destwb As Workbook
Dim TempFilePath As String
Dim TempFileName As String
With Application
.ScreenUpdating = False
.EnableEvents = False
End With
Set Sourcewb = ActiveWorkbook
'Copy the sheet to a new workbook
ActiveSheet.Copy
Set Destwb = ActiveWorkbook
'Determine the Excel version and file extension/format
With Destwb
If Val(Application.Version) < 12 Then
'You use Excel 97-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
Range("A1:A70").EntireRow.Delete
'Columns("A:E").Delete
'Save the new workbook/Mail it/Delete it
TempFilePath = Environ$("temp") & "\"
TempFileName = "Liste à surveiller - Watch_List " & " " _
& Format(Now + 1, "dd-mm-yyyy ")
With Destwb
.SaveAs TempFilePath & TempFileName & FileExtStr, _
FileFormat:=FileFormatNum
.Close Savechanges:=False
End With
Dim OLApplication As Outlook.Application, OLMail As Outlook.MailItem
Set OLApplication = CreateObject("Outlook.Application")
Set OLMail = OLApplication.CreateItem(OLMailItem)
With OLMail
.To = "..com" ' Destinataire à préciser
.CC = "" ' MailCC ' Copie"
.BCC = "...com"
.Importance = olImportanceNormal
.Subject = "Liste à surveiller " & " " _
& Format(Now + 1, "dd-mm-yyyy ") ' Sujet
.body = "Fichier en PJ" ' Message
.Attachments.Add (TempFilePath & TempFileName & FileExtStr) ' Pièce jointe
.Categories = "Daily"
'.OriginatorDeliveryReportRequested = True ' Accusé de dépôt
'.ReadReceiptRequested = True ' Accusé de lecture
.Send '<<<<<<<<<<<<<<<Pour envoyer directement
'.Display '<<<<<<<<<<<<<Pour voir le mail avant envoi
End With
'Delete the file you have send
Kill TempFilePath & TempFileName & FileExtStr
With Application
.ScreenUpdating = True
.EnableEvents = True
End With
Set OLApplication = Nothing
Set OLMail = Nothing
End Sub
**********************************************************************************************************************
Un petit caprice d'un profane en VBA
J'ai trouvé ce code que j'utilise et qui fonctionne parfaitement bien et me permet d'envoyer une plage de cellules d'un fichier original coller dans un nouveau classeur. Le fichier (classeur) est une copie en valeurs de ma plage.
Serait-il possible de garder juste une colonne avec les formules, la colonne en question contient une Somme des cellules ( Ex. Cellule T74 contient la somme de E1:S1)
Merci à vous
********************************************************************************************************************
Option Explicit
'Ne pas oublier :
'de cocher la référence Microsoft Outlook xx.0 object library dans l'éditeur VBE (outil>références)
Sub EnvoiMailFeuilleActive_Watch_List()
Dim FileExtStr As String
Dim FileFormatNum As Long
Dim Sourcewb As Workbook
Dim Destwb As Workbook
Dim TempFilePath As String
Dim TempFileName As String
With Application
.ScreenUpdating = False
.EnableEvents = False
End With
Set Sourcewb = ActiveWorkbook
'Copy the sheet to a new workbook
ActiveSheet.Copy
Set Destwb = ActiveWorkbook
'Determine the Excel version and file extension/format
With Destwb
If Val(Application.Version) < 12 Then
'You use Excel 97-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
Range("A1:A70").EntireRow.Delete
'Columns("A:E").Delete
'Save the new workbook/Mail it/Delete it
TempFilePath = Environ$("temp") & "\"
TempFileName = "Liste à surveiller - Watch_List " & " " _
& Format(Now + 1, "dd-mm-yyyy ")
With Destwb
.SaveAs TempFilePath & TempFileName & FileExtStr, _
FileFormat:=FileFormatNum
.Close Savechanges:=False
End With
Dim OLApplication As Outlook.Application, OLMail As Outlook.MailItem
Set OLApplication = CreateObject("Outlook.Application")
Set OLMail = OLApplication.CreateItem(OLMailItem)
With OLMail
.To = "..com" ' Destinataire à préciser
.CC = "" ' MailCC ' Copie"
.BCC = "...com"
.Importance = olImportanceNormal
.Subject = "Liste à surveiller " & " " _
& Format(Now + 1, "dd-mm-yyyy ") ' Sujet
.body = "Fichier en PJ" ' Message
.Attachments.Add (TempFilePath & TempFileName & FileExtStr) ' Pièce jointe
.Categories = "Daily"
'.OriginatorDeliveryReportRequested = True ' Accusé de dépôt
'.ReadReceiptRequested = True ' Accusé de lecture
.Send '<<<<<<<<<<<<<<<Pour envoyer directement
'.Display '<<<<<<<<<<<<<Pour voir le mail avant envoi
End With
'Delete the file you have send
Kill TempFilePath & TempFileName & FileExtStr
With Application
.ScreenUpdating = True
.EnableEvents = True
End With
Set OLApplication = Nothing
Set OLMail = Nothing
End Sub
**********************************************************************************************************************