Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have this code that loops through my worksheet and create new folders. I
need to use multiple columns to create my folder such as CompanyName in Column A and CompanyCity in Column F. I would like to use a dash or parentecies between the CompanyName and CompanyCity e.g. CompanyName-CompanyCity. Sub StartHere() Dim rCell As Range, rRng As Range Set rRng = Sheet1.Range("C2:C100") For Each rCell In rRng.Cells CreateFolders rCell.Value, "C:\Test" Next rCell End Sub Sub CreateFolders(sSubFolder As String, ByVal sBaseFolder As String) Dim sTemp As String 'Make sure the base folder is ready to have a sub folder 'tacked on to the end If Right(sBaseFolder, 1) < "\" Then sBaseFolder = sBaseFolder & "\" End If 'Make sure base folder exists If Len(Dir(sBaseFolder, vbDirectory)) 0 Then 'Replace illegal characters with an underscore sTemp = CleanFolderName(sSubFolder) 'See if already exists: Thanks Dave W. If Len(Dir(sBaseFolder & sTemp)) = 0 Then 'Use MkDir to create the folder MkDir sBaseFolder & sTemp End If End If End Sub Function CleanFolderName(ByVal sFolderName As String) As String Dim i As Long Dim sTemp As String For i = 1 To Len(sFolderName) Select Case Mid$(sFolderName, i, 1) Case "/", "\", ":", "*", "?", "<", "", "|" sTemp = sTemp & "_" Case Else sTemp = sTemp & Mid$(sFolderName, i, 1) End Select Next i CleanFolderName = sTemp End Function |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
I need to add columns at the end of a worksheet, | Excel Worksheet Functions | |||
How to merge columns from one worksheet to another worksheet | Excel Worksheet Functions | |||
new worksheet with 4 columns only | Excel Programming | |||
VBA to show or hide columns in one worksheet conditioned on value in other worksheet | Excel Programming | |||
createfolder | Excel Programming |