+ Reply to Thread
Results 1 to 4 of 4

Chart Objects

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    02-26-2012
    Location
    Ottawa, ON
    MS-Off Ver
    Excel 2007
    Posts
    129

    Chart Objects

    Hello! I was wondering if there is (there must be) a way to delete a chart in a spreadsheet only if it has a certain title? There will be other charts on the spreadsheets with different titles.

    Is there a simple way to do this using Chart Objects?

  2. #2
    Forum Expert
    Join Date
    12-15-2009
    Location
    Chicago, IL
    MS-Off Ver
    Microsoft Office 365
    Posts
    3,177

    Re: Chart Objects

    You can loop all the charts within a worksheet then delete chart based on chart label title

    Sub DeleteChart()
    Dim cht As ChartObject
    
    For Each cht In ActiveSheet.ChartObjects
        If cht.Chart.HasTitle And cht.Chart.ChartTitle.Text = "Revenue2" Then
            cht.Delete
        End If
    Next cht
    
    End Sub
    Attached Files Attached Files

  3. #3
    Forum Contributor
    Join Date
    02-26-2012
    Location
    Ottawa, ON
    MS-Off Ver
    Excel 2007
    Posts
    129

    Re: Chart Objects

    Thank you!

    However, it is still deleting the charts. I have three different buttons to make three different histograms. If I click one button, I'd like it to only delete the old histogram from that button....

  4. #4
    Forum Contributor
    Join Date
    02-26-2012
    Location
    Ottawa, ON
    MS-Off Ver
    Excel 2007
    Posts
    129

    Re: Chart Objects

    Actually, no it isn't deleting them! It is moving them all to the same locations on top each other?

    Here is my code, the code is basically the same from the two other buttons but with different chart locations.

    
    Private Sub getHistogramHVBD_Click()
    
    Dim binStartHVBD As Double
    Dim binEndHVBD As Double
    Dim binWidthHVBD
    Dim numberOfBinHVBD As Double
    Dim i As Double
    Dim hvbdRange As Range
    Dim binRange As Range
    
    Dim cht As ChartObject
    
    binStartHVBD = Cells(3, 9).Value
    binEndHVBD = Cells(4, 9).Value
    binWidthHVBD = Cells(5, 9).Value
    numberOfBinsHVBD = ((binEndHVBD - binStartHVBD) / binWidthHVBD) + 11
    
    Cells(11, 9) = binStartHVBD
    
    For i = 12 To numberOfBinsHVBD
    
        Cells(i, 9) = Cells(i - 1, 9).Value + binWidthHVBD
    
    Next i
    
    
    
    Set hvbdRange = Range("B11", Range("B" & Rows.Count).End(xlUp))
    Set binRange = Range("I11", Cells(numberOfBinsHVBD, 9))
    
    Columns(27).ClearContents
    Columns(28).ClearContents
    
    Dim outputRange As Range
    Set outputRange = ActiveSheet.Range("AA1")
    
    
    
    For Each cht In ActiveSheet.ChartObjects
        If cht.Chart.HasTitle And cht.Chart.ChartTitle.Text = "Hard Breakdown Voltage Histogram" Then
           cht.Delete
    End If
    Next cht
    
        
       
       
    
    Application.Run "ATPVBAEN.XLAM!Histogram", hvbdRange, outputRange, binRange, False, False, True, _
    False
    
     ActiveChart.ChartTitle.Text = "X"
        ActiveChart.Axes(xlCategory, xlPrimary).AxisTitle.Text = "X"
    
    ActiveSheet.ChartObjects.Left = Cells(1, 14).Left
    ActiveSheet.ChartObjects.Top = Cells(1, 14).Top
    ActiveSheet.ChartObjects.Height = Range("N1:N22").Height
    ActiveSheet.ChartObjects.Width = Range("N1:Y1").Width
    
    
    
    End Sub

+ 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. Rotating Chart Objects
    By MAMC84 in forum Excel General
    Replies: 1
    Last Post: 04-08-2008, 10:51 AM
  2. How to Name Chart Objects
    By DCSwearingen in forum Excel General
    Replies: 2
    Last Post: 07-30-2006, 05:27 AM
  3. [SOLVED] Chart Objects Error
    By Bill in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-14-2005, 01:05 AM
  4. Chart Objects
    By Bill in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-18-2005, 09:05 AM
  5. [SOLVED] Protecting chart objects
    By julia.stone@gmail.com in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 04-18-2005, 09:06 AM

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