+ Reply to Thread
Results 1 to 32 of 32

Macro for renaming fiiles

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Macro for renaming fiiles

    I have the following macro

    HTML Code: 
    I would like to change the filename to reflect the month. every file in each work book has a different name but it is the same up until the date "Expense report Sep_13 (then each file is different).

    Is there anyway I can add the date before saving this file and how to add it in without spoiling my existing macro?

    (currently the month is refreshed based upon a drop down box)

  2. #2
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    Basically what I want to do is.

    Above macro refreshes all workbooks in a folder based upon the month selected in a control sheet in a drop down. I.E december. That all works fine and it saves. But the file names don;t change. I need the bit with the month in it (see above) to change to the month I am updating for, if that makes sense?

    Thank you kindly

  3. #3
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    Can you fill in these details :

    File Name Currently :

    File Name Required :
    Happy Computing ,

    Xlbiznes.

    To show your appreciation please click *

  4. #4
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    Every file name is different in the folder.

    So file 1 is called Expense report Sep_13_Corp financial Accounting

    File 2 Expense report Sep_13_Corp Premises

    In folder 2 the corp part will be replaced. However up to the date part they are always the same in every file.

    I want to change the "Sep_13" part with the current month part (based on the month I selected in the original macro see above), so for this mont I am doing Dec (= wb1.Sheets("Sheet1").Range("G4")
    )
    Last edited by floricita; 01-02-2014 at 12:45 PM. Reason: e

  5. #5
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    The occurrence of _ (underscore) is only when you have month_year_description, does it occur otherwise ?

  6. #6
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    Hi, no that is the entire filename syntax

  7. #7
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    Please test this code to see if this is what we are trying to achieve.


    Sub in_file()
    'code by xlbiznes
    Dim fl_name As String
    Dim target_str As String
    fl_name = "Sep_13_Corp financial Accounting"
    If InStr(1, fl_name, "_") > 0 Then
        target_str = Mid(fl_name, InStr(1, fl_name, "_") - 3, 6)
    End If
    MsgBox "before : " & fl_name & vbCrLf & "after :" & Replace(fl_name, target_str, "testing")
    
    'in your actual code you will use
    'Replace(fl_name, target_str, wb1.Sheets("Sheet1").Range("G4"))
    
    End Sub

  8. #8
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    Hi I didn't know how to add yours to mine

    I have done

      Sub macro_1()
    
      
      Dim wb1, wb2, month_name, fs, fol, fil
      Set wb1 = ActiveWorkbook
     Set fs = CreateObject("Scripting.filesystemobject")
      Set fol = fs.getfolder("U:\Outlooksoft\Europe\2013\Financial Reporting\ACTUAL Monthly results\12_Dec_13\Manager Expense Reports\Corp") ' change path as appropriate
      For Each fil In fol.Files
          Set wb2 = Workbooks.Open(fil)
          wb2.Sheets("PERIODIC").Range("B63") = wb1.Sheets("Sheet1").Range("G4")
          Application.Run ("mnu_etools_refresh")
    
    
          Application.DisplayAlerts = False
         wb2.Close True
        Application.DisplayAlerts = True
        
    
     Next
    
    Dim fl_name As String
    Dim target_str As String
    fl_name = "Sep_13_Corp financial Accounting"
    If InStr(1, fl_name, "_") > 0 Then
        target_str = Mid(fl_name, InStr(1, fl_name, "_") - 3, 6)
        'Replace(fl_name, target_str, wb1.Sheets("Sheet1").Range("G4"))
    
    
    End Sub
    with no luck

  9. #9
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    try this code, i have made changes to your code and added some extra lines to save the file as needed.


      Sub macro_1()
    Dim fl_name As String
    Dim target_str As String
      
      Dim wb1, wb2, month_name, fs, fol, fil
      Set wb1 = ActiveWorkbook
     Set fs = CreateObject("Scripting.filesystemobject")
      Set fol = fs.getfolder("U:\Outlooksoft\Europe\2013\Financial Reporting\ACTUAL Monthly results\12_Dec_13\Manager Expense Reports\Corp") ' change path as appropriate
    
      For Each fil In fol.Files
          Set wb2 = Workbooks.Open(fil)
         wb2.Sheets("PERIODIC").Range("B63") = wb1.Sheets("Sheet1").Range("G4")
         Application.Run ("mnu_etools_refresh")
    
    
    
          Application.DisplayAlerts = False
          
        'new code added
        fl_name = fil
        If InStr(1, fl_name, "_") > 0 Then
        target_str = Mid(fl_name, InStr(1, fl_name, "_") - 3, 6)
        'MsgBox wb1.Sheets("Sheet1").Range("G4")
        fl_name = Replace(fl_name, target_str, wb1.Sheets("Sheet1").Range("G4").Text)
        End If
        'new code ends
        wb2.SaveAs fl_name 'save file with the new name
        
         wb2.Close True
        Application.DisplayAlerts = True
    
     Next
    
    End Sub

  10. #10
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    when I go to debug it highlights the line

    HTML Code: 

  11. #11
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    Ok,

    i think the issue is with this line,

      Set fol = fs.getfolder("U:\Outlooksoft\Europe\2013\Financial Reporting\ACTUAL Monthly results\12_Dec_13\Manager Expense Reports\Corp") ' change path as appropriate
    as there is \12_DEC_13\ in the folder string , i think this is being renamed and results in an error.

  12. #12
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    Thanks man.

    It seemed to be running ok then I got the error message "saved as method of workbook class failed??

  13. #13
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    Can you check what fl_name is holding ,during the debug process.

  14. #14
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    Thanks. That is the name of the folder which contains the files. I do not wish for that to change in any way

  15. #15
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    How do I do that?

  16. #16
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    No issues,

    this will take care.

    Sub macro_1()
    Dim fl_name As String
    Dim target_str As String
      
      Dim wb1, wb2, month_name, fs, fol, fil
      Set wb1 = ActiveWorkbook
      Set fs = CreateObject("Scripting.filesystemobject")
      Set fol = fs.getfolder("U:\Outlooksoft\Europe\2013\Financial Reporting\ACTUAL Monthly results\12_Dec_13\Manager Expense Reports\Corp") ' change path as appropriate
    
      For Each fil In fol.Files
          Set wb2 = Workbooks.Open(fil)
         wb2.Sheets("PERIODIC").Range("B63") = wb1.Sheets("Sheet1").Range("G4")
         Application.Run ("mnu_etools_refresh")
          Application.DisplayAlerts = False
        'new code added
        fl_name = wb2.Name
        If InStr(1, fl_name, "_") > 0 Then
        target_str = Mid(fl_name, InStr(1, fl_name, "_") - 3, 6)
        'MsgBox wb1.Sheets("Sheet1").Range("G4")
        fl_name = Replace(fl_name, target_str, wb1.Sheets("Sheet1").Range("G4").Text)
        End If
        fl_name = ActiveWorkbook.Path & "\" & fl_name
        'new code ends
        wb2.SaveAs fl_name 'save file with the new name
         wb2.Close True
        Application.DisplayAlerts = True
     Next
    
    End Sub

  17. #17
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    Gosh mate that is nearly it. But instead of reading "Dec" I get DECP in the new filename for december.

    I also wanted ideally to rename the existing file with the current month rather than saving it as a new file, is this possible? (otherwise I have to go back and manually delete a load of files.

    Thanks

  18. #18
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    what is the contents of the G4 ? Why is it DECP ? lets tackle this first.

    We can use the filesystemobject to simply rename the files in the list using the new replace logic.

  19. #19
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    try this new code, that would rename your file, You need to check the contents of g4 as we are using that to replace the month_year part of your file.


    Sub macro_1()
    Dim fl_name As String
    Dim target_str As String
      
      Dim wb1, wb2, month_name, fs, fol, fil
      Set wb1 = ActiveWorkbook
      Set fs = CreateObject("Scripting.filesystemobject")
      Set fol = fs.getfolder("U:\Outlooksoft\Europe\2013\Financial Reporting\ACTUAL Monthly results\12_Dec_13\Manager Expense Reports\Corp") ' change path as appropriate
    
      For Each fil In fol.Files
          Set wb2 = Workbooks.Open(fil)
         wb2.Sheets("PERIODIC").Range("B63") = wb1.Sheets("Sheet1").Range("G4")
         Application.Run ("mnu_etools_refresh")
          Application.DisplayAlerts = False
        'new code added
        fl_name = wb2.Name
        If InStr(1, fl_name, "_") > 0 Then
        target_str = Mid(fl_name, InStr(1, fl_name, "_") - 3, 6)
        'MsgBox wb1.Sheets("Sheet1").Range("G4")
        fl_name = Replace(fl_name, target_str, wb1.Sheets("Sheet1").Range("G4").Text)
        End If
        fl_name = ActiveWorkbook.Path & "\" & fl_name
        'new code ends
         wb2.Close True
         fs.movefile fil, fl_name
        Application.DisplayAlerts = True
     Next
    
    End Sub

  20. #20
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    Hi, the dates is in this format Dec.2013

    everything works fine except for.

    The beginning of the report name is now like this.

    "Expense RDec2013......."

    Where as I wanted it to read

    "Expense Report Dec.2013......"

    So the "eport" bit has disappeared and for some reason the . in the date?

  21. #21
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    Can you check this line of code and add a msgbox below that to see whats happening.

     fl_name = Replace(fl_name, target_str, wb1.Sheets("Sheet1").Range("G4").Text)
    
    msgbox  "orginal name : " &  fl_name & vbcrlf & "String to Replace: " & target_Str & vbcrlf & wb1.Sheets("Sheet1").Range("G4").Text

  22. #22
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    I don't have the knowledge to do that.

    It must have something to do with the -3 and 6 I think. When I delete the -3 in the macro and run it, the report bit stays, but the -201 dissappears.

  23. #23
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    Or I guess the starting point of the mid function must not be quite right?

  24. #24
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    can you post the code that is in question ?

  25. #25
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    HTML Code: 

  26. #26
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    What is the original file name ?

  27. #27
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    So the previous file I will have

    Expense Report 2013.Sep

  28. #28
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    Hi, I think this maybe the issue. I may have not provided the up to date file name. I provided the old file name

    The filename will be

    Expense Report 2013.Dec xxxxxxxxxxxxxx(this part will vary) So I will need to change the 2013.Dec part to what is in G4 of the control sheet.

    Many apologies

  29. #29
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    can you change this code

    from

    target_str = Mid(fl_name, InStr(1, fl_name, "_") - 3, 6)
    to
    target_str = Mid(fl_name, InStr(1, fl_name, ".") - 4, 8)

  30. #30
    Forum Contributor
    Join Date
    05-24-2010
    Location
    London England
    MS-Off Ver
    Excel 2003
    Posts
    345

    Re: Macro for renaming fiiles

    Hi I have done some testing and this seems to work fine.

    I want to thank you so much for all your help.

    Just to note, in one of the folders, it went "past the loop"

    I.e. it did what it needed to do in all the files then tried to carry on and I got a bug report. Not sure why that is? But it still worked

  31. #31
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    You are welcome, Its nice that we achieved , what you wanted.

  32. #32
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Macro for renaming fiiles

    if you are satisfied with the solution, please mark this thread as solved.

+ 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. Renaming a Worksheet by Macro
    By Denno in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 06-15-2013, 12:58 AM
  2. macro for renaming
    By graphicsmanx1 in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 12-05-2012, 04:22 PM
  3. [SOLVED] Renaming a button using a macro
    By fullers in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-21-2006, 06:40 AM
  4. Renaming a Macro
    By Excel User in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-31-2006, 03:10 PM
  5. Macro for renaming a worksheet who's name changes...
    By Accipiter in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 01-19-2005, 04:45 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