+ Reply to Thread
Results 1 to 2 of 2

Create folders in Window Explorer from tab or csv files export

  1. #1
    kricketts
    Guest

    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...heet.functions

  2. #2
    Duke Carey
    Guest

    RE: 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...heet.functions


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1