+ Reply to Thread
Results 1 to 5 of 5

Chart integrity degrades when hiding

Hybrid View

timmtamm Chart integrity degrades when... 02-26-2009, 03:33 PM
timmtamm Re: Chart integrity degrades... 02-26-2009, 05:25 PM
timmtamm Re: Chart integrity degrades... 02-27-2009, 08:22 PM
Andy Pope Re: Chart integrity degrades... 02-28-2009, 07:47 AM
timmtamm Re: Chart integrity degrades... 03-02-2009, 01:53 PM
  1. #1
    Forum Contributor
    Join Date
    02-11-2009
    Location
    Salt Lake City, Utah
    MS-Off Ver
    Excel 365
    Posts
    100

    Chart integrity degrades when hiding

    I have a macro that is hiding rows. The charts and the information that is on them is included in these rows. These are XY scatter charts. I have changed the properties of the chart to "don't move or size with cells." However, it still isn't completely working.

    If a group of cells is hidden by the macro and then I make a new worksheet by right clicking the worksheet tab and selecting "move or copy," and then the macro unhides the same group of cells, the equasion for trendline and R-Squared value dissapears. Instead, there are "x value" data labels on each point of the line.

    After some time and repetition of this, I even had on chart take on the properties (including source information) of another chart in the same worksheet.

    Can this problem be fixed?

    Sub Worksheet_Change(ByVal Target As Range)
    If Target.Cells.Count > 1 Then Exit Sub
    If Intersect(Target, Range("B20,J20")) Is Nothing Then Exit Sub
    Select Case Target.Address(0, 0)
        Case "B20"
            Select Case Target.Value
            Case 0.98, 1.4
                Rows("156:186").EntireRow.Hidden = False
                Rows("187:217").EntireRow.Hidden = True
                ActiveSheet.PageSetup.PrintArea = "$A$1:I$186"
            Case 0.76
                Rows("187:217").EntireRow.Hidden = False
                ActiveSheet.PageSetup.PrintArea = "$A$1:$I$155, $A$187:$I$217"
                Rows("156:186").EntireRow.Hidden = True
            Case Else
                Rows("156:217").EntireRow.Hidden = True
                ActiveSheet.PageSetup.PrintArea = "$A$1:$I$155"
            End Select
        Case "J20"
            Select Case Target.Value
            Case 1
                Rows("1:186").EntireRow.Hidden = False
                Rows("187:217").EntireRow.Hidden = True
                ActiveSheet.PageSetup.PrintArea = "$A$1:I$186"
            Case 2
                Rows("94:124").EntireRow.Hidden = True
                Rows("156:217").EntireRow.Hidden = True
                ActiveSheet.PageSetup.PrintArea = "$A$1:$I$155"
            Case Else
                Rows("1:155").EntireRow.Hidden = False
                Rows("156:217").EntireRow.Hidden = True
                ActiveSheet.PageSetup.PrintArea = "$A$1:$I$155"
            End Select
    End Select
    End Sub

  2. #2
    Forum Contributor
    Join Date
    02-11-2009
    Location
    Salt Lake City, Utah
    MS-Off Ver
    Excel 365
    Posts
    100

    Re: Chart integrity degrades when hiding

    I thought that this might be complex enough that I should include a file for the example. So here is a simplified Excel file with the charts and macro. Go ahead and take a look.
    Attached Files Attached Files
    Last edited by timmtamm; 02-26-2009 at 05:29 PM. Reason: grammatical correction

  3. #3
    Forum Contributor
    Join Date
    02-11-2009
    Location
    Salt Lake City, Utah
    MS-Off Ver
    Excel 365
    Posts
    100

    Re: Chart integrity degrades when hiding

    bump, no response.

  4. #4
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Chart integrity degrades when hiding

    The trend line label does appear to vanish when copying to another sheet when the original is not displayed.

    I guess the fix is to unhide the cells prior to copying sheet and then hide on new sheet.
    Cheers
    Andy
    www.andypope.info

  5. #5
    Forum Contributor
    Join Date
    02-11-2009
    Location
    Salt Lake City, Utah
    MS-Off Ver
    Excel 365
    Posts
    100

    Re: Chart integrity degrades when hiding

    Yea, I can unhide and then rehide, but I was hoping there might be a more automated way of fixing the problem.

+ 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