Retrieving a chart using VBA

EBahn

New Member
Joined
Mar 3, 2023
Messages
8
Office Version
  1. 2016
Platform
  1. MacOS
I have two charts, Chart 1 and Chart 2. I would like to be able to add one of the two charts to another sheet using a specific value or cell to determine which chart to use. Basically if value in cell (or if I can use a value with out a cell) is greater or less than say 8363. If greater, use Chart 1 if less, use chart 2. Is there anyone who can give a hand? Much appreciated.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
The following code assumes that Sheet1 contains 'Chart 1' and 'Chart 2'. It also assumes that cell B2 on Sheet2 specifies the value that determines which chart to copy and paste. Note that the chart is copied and pasted at cell D2. Also, note that the code needs to be placed in the code module for Sheet2 (right-click the sheet tab for Sheet2, select View Code, and copy/paste the code into the code module for the sheet).

VBA Code:
Option Explicit

Private Sub Worksheet_Change(ByVal Target As Range)

    Dim chartCopied As Boolean

    If Target.CountLarge > 1 Then Exit Sub
 
    If Target.Address <> "$B$2" Then Exit Sub

    Const CHART_NAME As String = "MyChart" 'change the name as desired
 
    On Error Resume Next
    Me.ChartObjects(CHART_NAME).Delete
    On Error GoTo 0
 
    If Len(Target.Value) > 0 Then
        chartCopied = False
        If Target.Value > 8363 Then
            ThisWorkbook.Worksheets("Sheet1").ChartObjects("Chart 1").Copy
            Me.Paste Me.Range("D2")
            chartCopied = True
        ElseIf Target.Value >= 0 Then
            ThisWorkbook.Worksheets("Sheet1").ChartObjects("Chart 2").Copy
            Me.Paste Me.Range("D2")
            chartCopied = True
        End If
        If chartCopied = True Then
            With Me
                .ChartObjects(.ChartObjects.Count).Name = CHART_NAME
            End With
        End If
    End If
 
 
End Sub

Hope this helps!
 
Upvote 0
Thank you very much. I will try to use this and see if I can't use the assumptions in the way it would work. I could send you the workbook I am trying to deal with and see if it can work. These "charts" are aircraft balance envelopes that I am trying to incorporate into one workbook. Right now I have made two separate worksheets and am trying to put into one worksheet.
 
Upvote 0

Forum statistics

Threads
1,221,490
Messages
6,160,133
Members
451,622
Latest member
xmrwnx89

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top