Hi keelsail
Try this with the names in column A
It will create the folders in C:\
Or do you have the full path in the cells like C:\yourfoldername ?
Alt -F11
Insert>Module from the menu bar
paste the sub in there
Alt-Q to go back to Excel
Alt-F8
Select the sub and press Run
Sub test()
Dim rootfolder As String
Dim cell As Range
rootfolder = "C:\"
For Each cell In Columns("A").SpecialCells(xlCellTypeConstants)
On Error Resume Next
MkDir rootfolder & cell.Value
On Error GoTo 0
Next cell
End Sub