Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am using excel 2003 and WindowsXp Professional
_______ I prepared a macro to creade a folder and a subfolder but I do not know How to complete it What I wrote is: Sub Auto_Open() Dim MyPath as String Dim MyCell As String Dim Name AS String ' puts the current in E1 ( ex. 10\04\2006) Cells(1,5) = (Date) ' Inputs year 2006 of cell E1 in D5 WorkSheets("output").Range ("D5").Value = "=Year(E1)" ' MyCell takes the value of D5 MyCell = Sheets("output").Cells(5,4).Value ' Create a folder On Error GoTo L1 MyPath = CurDir & "\" MKDir MyPath & "InvoicingPrg" L1: 'Note: Up to here the Macro works fine and creates the folder in C:\ named "InvoicingPrg" and no errors occur even if the folder exists already. What I need is to finf out if within the folder "C:\InvoicingPrg" exists a foder named "Invoice2006" ( Name = "invoice" & MyCell ), if yes exit the sub otherwise creats the folder "Invoice2006". I do not now how to do this second part provided, I hope, that the first part of the Macro is correct. Thankyou all Francesco |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Search, Copy, Paste Macro in Excel | Excel Worksheet Functions | |||
Closing File Error | Excel Discussion (Misc queries) | |||
macro with F9 | Excel Discussion (Misc queries) | |||
Make Alignment options under format cells available as shortcut | Excel Discussion (Misc queries) | |||
Playing a macro from another workbook | Excel Discussion (Misc queries) |