Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 23
Default Create subfolders in a folder

Hello VB Bugs!

I was successful in creating a folder based on an excel
cell. The folder is named accordingly what the user types.
This is the following code I use to create first folder.
How can I create subfolders and label them permanently??
The 1st folder name will always be relative and subfolders name will be
absolute.
Thanks & enjoy the live bugs!! Myrna

Dim x As String
Dim cell As Range

On Error Resume Next
cLastRow = Cells(Rows.Count, "A").End(xlUp).Row
For Each cell In Range("A" & cLastRow)
x = "S:\Order Folders\2004 Open Orders\" & cell.Value
MkDir x
Next cell

Note: This procedure is excuted in a UserForm OK Button


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Create subfolders in a folder

Dear Myrna

Assuming that everything you included is already working for you, the
I would just add two lines (well, two lines for each subfolder you wis
to make)

look at the following:


Dim x As String
Dim cell As Range

On Error Resume Next
cLastRow = Cells(Rows.Count, "A").End(xlUp).Row
For Each cell In Range("A" & cLastRow)

x = "S:\Order Folders\2004 Open Orders\" & cell.Value

y = "S:\Order Folders\2004 Open Orders\" & cell.Value & "\Other folde
Y"

MkDir x

MkDir y


Next cell



...do you think that would do it for you?

(note: i did not change or delete any of your code, I only inserted on
line after your "x= " line and one more line after your "MkDir x" line
That is all)

One issue to watch out for is that when you use MkDir, you can ge
errors if you want to create "C:\Here\There" if you have not FIRS
created "C:\Here"

But, assuming that your code didn't have any problem creating "S:\Orde
Folders\2004 Open Orders\" & cell.Value -- then you shouldn't have
problem creating "S:\Order Folders\2004 Open Orders\" & cell.Value
"\Other folder Y" as a next step.

Does that make sense?

Let me know if there's a problem, I will keep an eye on this thread.

-Kelly
_______________________________
http://kellyjones.netfirms.co

--
Message posted from http://www.ExcelForum.com

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 23
Default Create subfolders in a folder


Hi Kelly...

Thanks a million bugs!!! The code you shared is magic...
I was also able to create additional subfolders within each subfolder.
enjoy life!! myrna


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to decide folder-depth or How to select more folders/subfolders (folder-tree) ? Subteam Excel Discussion (Misc queries) 2 May 7th 06 08:14 PM
create new Folder dallas Excel Programming 5 June 5th 04 10:42 PM
Create Folder and Text File in folder Todd Huttentsine Excel Programming 2 April 29th 04 03:41 PM
Trouble making a report of all Files within a Folder and all Subfolders? SuperJas Excel Programming 2 April 2nd 04 02:41 AM
Create Folder / Copy Folder / Replace Murray Outtrim[_2_] Excel Programming 0 February 24th 04 06:40 PM


All times are GMT +1. The time now is 05:39 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"