+ Reply to Thread
Results 1 to 2 of 2

Create folder base value on cell

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-21-2015
    Location
    nederland
    MS-Off Ver
    2021
    Posts
    206

    Create folder base value on cell

    Dear All,

    Please help me how to resolve this error problem,
    When folder is creat or already creat , I want a notification created or already creat in column B


    Sub Folder()
    Dim sv, i As Long
    sv = Cells(1).CurrentRegion
      For i = 1 To UBound(sv)
        If Dir(sv(i, 1) & "\" & sv(1, 2), 16) = "" Then
          CreateObject("shell.application").Namespace("c:").NewFolder Split(sv(i, 1), "\", 2)(1) & "\" & sv(1, 2)
         Else
          Application.DisplayAlerts = True
        End If
      Next i
    End Sub
    De folder need to be created :

    C:\data\Name1\02-2021
    C:\data\Name2\02-2021
    C:\data\Name3\02-2021
    C:\data\Name4\02-2021
    C:\data\Name5\02-2021
    Attached Images Attached Images
    Attached Files Attached Files
    Last edited by kirana2014; 02-08-2021 at 03:31 PM.

  2. #2
    Forum Guru Bo_Ry's Avatar
    Join Date
    09-10-2018
    Location
    Thailand
    MS-Off Ver
    MS 365
    Posts
    7,222

    Re: Create folder base value on cell

    Please try

    Sub Folder()
    Dim sv, i As Long
    sv = Cells(1).CurrentRegion
      For i = 1 To UBound(sv)
        If Dir(sv(i, 1) & "\" & [C1], vbDirectory) = "" Then
            CreateObject("shell.application").Namespace("c:").NewFolder Split(sv(i, 1), "\", 2)(1) & "\" & [C1]
         Else
          MsgBox sv(i, 1) & "\" & [C1] & " is already created"
        End If
      Next i
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. copy checkbox selected listed files from base folder to user selected folder
    By ayush842001 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-16-2020, 08:23 AM
  2. Create Folder & Check if Folder Exists if Not Create Folder & then Save File
    By Quivolt in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 07-28-2017, 05:31 AM
  3. Create Folder, Sub Folder and Text File from a Cell Value
    By manaswin in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 07-12-2017, 12:32 PM
  4. Macro to Create External Link with Some Specific Cells Base on Cell Value
    By designerbaboo786 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-12-2016, 01:36 PM
  5. Replies: 13
    Last Post: 06-04-2012, 02:18 PM
  6. [SOLVED] Create a new folder based on a cell name or value and save copy onto that folder
    By Le_Tiago in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 04-20-2012, 01:33 PM
  7. Replies: 6
    Last Post: 08-11-2006, 03:41 PM

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