Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi again,
Am Tue, 21 Jun 2016 16:39:46 +0200 schrieb Claus Busch: Sub OutlookMail() better try: Sub OutlookMail() Dim appOL As Outlook.Application Dim objNameSpace As Outlook.Namespace Dim objFolder As Outlook.MAPIFolder Dim objItems As Outlook.Items Dim objItem As Object Dim n As Long Set appOL = CreateObject("outlook.Application") Set objNameSpace = appOL.GetNamespace("MAPI") Set objFolder = objNameSpace.GetDefaultFolder(olFolderInbox) Set objItems = objFolder.Items For Each objItem In objItems With objItem If .Class = olMail Then If InStr(.Subject, "Hallo") 0 Then n = n + 1 Cells(n, 1) = .SenderName Cells(n, 2) = .ReceivedTime Cells(n, 3) = .Subject Cells(n, 4) = .Body End If End If End With Next Columns("A:D").AutoFit Rows("1:" & n).AutoFit End Sub Regards Claus B. -- Windows10 Office 2016 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Save messages | Excel Discussion (Misc queries) | |||
excel says folder is read only and cannot save | Setting up and Configuration of Excel | |||
How can I save an Excel file which says it's a Read only to a CD? | Excel Discussion (Misc queries) | |||
I get error messages in Excel cells once I save a file | Excel Worksheet Functions | |||
Rules that act on messages after they are opened & read? | Excel Discussion (Misc queries) |