Auf welcher Zeile (bitte die Zeile dazu auch posten) kommt der Fehler?
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Auf welcher Zeile (bitte die Zeile dazu auch posten) kommt der Fehler?
Und hast du im Email_versenden eine Error-Behandlung drin?
Ev. kommt der Fehler auch aus der Funktion.
Sub Email_versenden()
Dim strPDF As String, strPDF2 As String
Dim OutlookApp As Object, strEmail As Object
myDate = ThisWorkbook.Worksheets("Detaillansicht Mitarbeiter").Range("T1")
Set OutlookApp = CreateObject("Outlook.Application")
Set strEmail = OutlookApp.CreateItem(0)
ThisWorkbook.Sheets("Dashboards").Select
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
"\\oda-san1\KPI´s\2018\" & Format(myDate, "mmmm") & "\" & Format(myDate, "YYYY_MM") & "_Zieldatei " & Format(myDate, "YYYY") & ".pdf", _
Quality:=xlQualityStandard, IncludeDocProperties:=False, IgnorePrintAreas:=False, OpenAfterPublish:=False _
ThisWorkbook.Sheets(Array("Detaillansicht Aufträge VR", "Detailansicht Angebote VR", "Detailansicht Verkaufsbesuch VR", "Detailansicht Telefonate VR_TS", "Detail. Termintage_Forecast")).Select
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
"\\oda-san1\KPI´s\2018\" & Format(myDate, "mmmm") & "\" & Format(myDate, "YYYY_MM") & "_Zieldatei " & Format(myDate, "YYYY") & " Detaillierte Aufstellung.pdf", _
Quality:=xlQualityStandard, IncludeDocProperties:=False, IgnorePrintAreas:=False, OpenAfterPublish:=False
strPDF = "\\oda-san1\KPI´s\2018\" & Format(myDate, "mmmm") & "\" & Format(myDate, "YYYY_MM") & "_Zieldatei " & Format(myDate, "YYYY") & ".pdf"
strPDF2 = "\\oda-san1KPI´s\2018\" & Format(myDate, "mmmm") & "\" & Format(myDate, "YYYY_MM") & "_Zieldatei " & Format(myDate, "YYYY") & " Detaillierte Aufstellung.pdf"
With strEmail
.To = ""
.CC = ""
.Subject = "KPI Auswertung " & Format(myDate, "mmmm YYYY")
.body = "Guten Tag zusammen," & Chr(13) & _
"" & Chr(13) & _
"anbei übersende ich Ihnen die KPI´s für den " & Format(myDate, "mmmm YYYY") & "." & Chr(13) & _
"" & Chr(13) & _
"" & Chr(13) & _
"" & Chr(13)
.Attachments.Add strPDF
.Attachments.Add strPDF2
.Attachments.Add "\\oda-san1\KPI´s\Forecast\" & Format(myDate, "YYYY") & "\" & Format(myDate, "mmmm") & "\" & "Forecast " & Format(myDate, "mmmm YYYY") & ".xlsx"
.Display
End With
Set OutlookApp = Nothing
Set strEmail = Nothing
End Sub