Hello Everyone
I made below code to create multiple folder based on cell value but i want that path should also picked from the cell.
I have folder path in F4. so instead of folder path i want to add F4 in code. please help
I made below code to create multiple folder based on cell value but i want that path should also picked from the cell.
I have folder path in F4. so instead of folder path i want to add F4 in code. please help
VBA Code:
Sub AFolderVBA2() 'Excel VBA to make a folder.
Dim i As Integer
For i = 2 To 4
MkDir "Desktop:\ABC" & Range("AE" & i)
Next i
End Sub