Consulting

Results 1 to 2 of 2

Thread: unhide\resize enmasse

  1. #1
    VBAX Newbie
    Joined
    Jun 2013
    Posts
    1
    Location

    unhide\resize enmasse

    Received a request this AM to un-hide all cells in sheets of the workbook, and re-size all the cells (sheet and workbook) to fit both column width and row height.

    It would be such an issue if the request wasn't for 5000+ files.

  2. #2
    VBAX Guru mancubus's Avatar
    Joined
    Dec 2010
    Location
    "Where I lay my head is home" :D
    Posts
    2,644
    welcome to VBAX

    test with back up files...

    [VBA]
    Sub run_macro_on_all_files_same_folder()
    Dim fDir As String, fPath As String
    Dim wb As Workbook, ws As Worksheet

    fPath = "C:\MyFiles\" 'change
    If Right(fPath, 1) <> "\" Then fPath = fPath & "\"

    fDir = Dir(fPath & "*.xls*")
    Do While fDir <> ""
    Set wb = Workbooks.Open(fPath & fDir)
    Call Unhide_AutoFit_Worksheets
    wb.Close True
    fDir = Dir()
    Loop
    End Sub




    Sub Unhide_AutoFit_Worksheets()
    Dim ws As Worksheet

    For Each ws In Worksheets
    With ws
    .Cells.EntireRow.Hidden = False
    .Cells.EntireColumn.Hidden = False
    .Rows.AutoFit
    .Columns.AutoFit
    End With
    Next
    End Sub
    [/VBA]
    PLS DO NOT PM; OPEN A THREAD INSTEAD!!!

    1) Posting Code
    [CODE]PasteYourCodeHere[/CODE]
    (or paste your code, select it, click # button)

    2) Uploading File(s)
    Go Advanced / Attachments - Manage Attachments / Add Files / Select Files / Select the file(s) (multiple files can be selected while holding Ctrl key) / Upload Files / Done
    Replace company specific / sensitive / confidential data. Include so many rows and sheets etc in the uploaded workbook to enable the helpers visualize the data and table structure. Helpers do not need the entire workbook.

    3) Testing the Codes
    always back up your files before testing the codes.

    4) Marking the Thread as Solved
    from Thread Tools (on the top right corner, above the first message)

Posting Permissions

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