Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
kricketts
 
Posts: n/a
Default Create folders in Window Explorer from tab or csv files export

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Duke Carey
 
Posts: n/a
Default Create folders in Window Explorer from tab or csv files export

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
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
Export to Microsoft Excel in Internet Explorer mikepdx Setting up and Configuration of Excel 0 May 3rd 05 08:29 PM
Excel instance used with "Export to Microsoft Excel" option in Internet Explorer Karl Schweitzer Excel Discussion (Misc queries) 0 April 7th 05 07:17 PM
To create folders using VBA Sri Excel Discussion (Misc queries) 1 February 4th 05 02:13 PM
How to create a text scrolling window? Rickk New Users to Excel 1 January 29th 05 03:29 AM
Why does Excel in XP create new files? Lindy Excel Discussion (Misc queries) 3 December 2nd 04 01:56 AM


All times are GMT +1. The time now is 04:27 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"