+ Reply to Thread
Results 1 to 2 of 2

Excel Printing Slowing down Macros - Help

Hybrid View

mraadam Excel Printing Slowing down... 02-09-2007, 05:15 PM
Loz Not sure what the problem may... 02-13-2007, 07:31 AM
  1. #1
    Registered User
    Join Date
    02-09-2007
    Posts
    1

    Excel Printing Slowing down Macros - Help

    Good morning. I am new to this site but was hoping someone might be able to help me.

    I have an application written in VBA in Excel. I have created a new report (workbook) that has various radio buttons on it. These buttons have VBA code behind them to hide certain rows & columns based on certain criteria. Everything works well except after I print the workbook, preview the workbook or or do anything that has to do with printing. Once I do anything having to do with printing the macros that get run from the click events of the radio buttons slow down to a snails pace. They still work properly but literally take 5 to 6 times the amount of time as they did prior to printing. If I shut down Excel and bring it back up the macros start flying again. Is anyone aware of this issue or ever experienced this. I am not sure why printing would permanently slow down my macros until I close and re-open the workbook. Any help or advice anyone could give would be greatly appreciated.

    Thanks.
    MRAAdam

    Here's the code:

    Sub optResComOnly_Click()
    Dim Cell As Range
    Dim sOverallView As String
    Dim sLocation As String

    sLocation = ActiveCell.Address

    application.ScreenUpdating = False
    Worksheets("Hidden").Range("SelectedBusSeg").Value = "ResComOnly"
    sOverallView = Worksheets("Hidden").Range("OverAllView").Value

    For Each Cell In Range(sOverallView)

    Cell.EntireRow.Hidden = False

    If Cell.Value <> "Visible" Then _

    Cell.EntireRow.Hidden = True
    End If
    Next

    Set Cell = Nothing

    HideZeroRows


    application.ScreenUpdating = True
    ActiveWorkbook.ActiveSheet.Range(sLocation).Select
    End Sub
    ---------------------
    Sub HideZeroRows()
    Dim Cell As Range

    For Each Cell In Range("ZeroRows")

    If Cell.Value = "X" Then
    Cell.EntireRow.Hidden = True
    End If
    Next

    Set Cell = Nothing

    End Sub

  2. #2
    Forum Contributor
    Join Date
    01-24-2007
    Location
    Southampton, UK
    Posts
    137
    Not sure what the problem may be, but before printing or previewing, Excel recalculates all the Worksheets - do you have some code in the Workbook or Worksheet Calculate event?

    Do you have any other code in events or functions that could possibly be recursive?

+ 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