Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Sub psubSetUpFoldersInOutlook()
Dim oloUtlook As Outlook.Application
Dim ns As Outlook.NameSpace
Dim itm As Object
On Error Resume Next
Application.ScreenUpdating = False
Set oloUtlook = CreateObject("Outlook.Application")
Set ns = oloUtlook.GetNamespace("MAPI")
Set itm = ns.GetDefaultFolder(olFolderInbox)
itm.Folders.Add ("Name of Folder You want To add")
Set oloUtlook = Nothing
Set ns = Nothing
Set itm = Nothing
MsgBox "Outlook Set Up Succesfully"
ThisWorkbook.Close
End Sub