How can I create five folders after this with a spacific name

D

David Shoemaker

MkDir "C:\" & Range("C3").Value

Example: C:\12345\ART, LG1, G-CODE, LG3, LR2
 
B

Bernard Liengme

Sub tryme()
For Each mycell In Range("C3:C6")
MkDir "C:\" & mycell.Value
Next
End Sub

best wishes
 
Top