Sub CreateOutlookFolders()
Dim outApp As Object 'Outlook.Application
Dim outFldr As Object 'Outlook.Folder
Dim rng As Range, c As Range
Set outApp = GetObject(, "Outlook.Application")
Set outFldr = outApp.Session.GetDefaultFolder(6)
'6 = olFolderInbox - change this to reference the folder you want to add your new folders to
Set rng = Range("A1:A10") 'Range of Folder Names
On Error Resume Next 'Ensures the code doesn't fall over if any of the cells in your range are blank
For Each c In rng
outFldr.Folders.Add c
Next
On Error GoTo 0
Set rng = Nothing
Set outFldr = Nothing
Set outApp = Nothing
End Sub