Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am a yearbook advisor and would like to be able to create individual
folders for students (seniors), for whom we must scan pictures, without creating them one at a time. Is there a way to export a list of names into Windows Explorer to create a folder for each student? ---------------- This post is a suggestion for Microsoft, and Microsoft responds to the suggestions with the most votes. To vote for this suggestion, click the "I Agree" button in the message pane. If you do not see the button, follow this link to open the suggestion in the Microsoft Web-based Newsreader and then click "I Agree" in the message pane. http://www.microsoft.com/office/comm...et.f unctions |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Here's a quick macro - no error checking - that creates a subdir for each
student in the selected range of an Excel sheet Sub md() Const strPath = "C:\Students\" Dim cc As Range For Each cc In Selection MkDir strPath & cc.Text Next End Sub For information on installing the code see Getting Started with Macros and User Defined Functions http://www.mvps.org/dmcritchie/excel/getstarted.htm "kricketts" wrote: I am a yearbook advisor and would like to be able to create individual folders for students (seniors), for whom we must scan pictures, without creating them one at a time. Is there a way to export a list of names into Windows Explorer to create a folder for each student? ---------------- This post is a suggestion for Microsoft, and Microsoft responds to the suggestions with the most votes. To vote for this suggestion, click the "I Agree" button in the message pane. If you do not see the button, follow this link to open the suggestion in the Microsoft Web-based Newsreader and then click "I Agree" in the message pane. http://www.microsoft.com/office/comm...et.f unctions |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Export to Microsoft Excel in Internet Explorer | Setting up and Configuration of Excel | |||
Excel instance used with "Export to Microsoft Excel" option in Internet Explorer | Excel Discussion (Misc queries) | |||
To create folders using VBA | Excel Discussion (Misc queries) | |||
How to create a text scrolling window? | New Users to Excel | |||
Why does Excel in XP create new files? | Excel Discussion (Misc queries) |