ChartObjects.Add slow

Av8tordude

Well-known Member
Joined
Oct 13, 2007
Messages
1,074
Office Version
  1. 2019
Platform
  1. Windows
When running this code, the code executes very quick on a sheet with (ex. 300 used range). However, if I run this code on sheet with (ex 750 used range) its bogs down at a ChartObjects.Add. Doing some searching, I came across similar issue here... Creating a Chart Is VERY Slow

Only issue is that I'm not using any data. The code only adds a PNG image to the sheet then copies that image to a chart object so I can load it to a userform. Any idea why its executing slow and what I can do to speed up loading the chart object?

VBA Code:
Option Explicit

Private Sub UserForm_Activate()
Dim myPicture As String, FName As String
Dim Pict As Object, oChartObj As ChartObject

Set Wks = ActiveSheet
Wks.Unprotect Password:="Password"
Application.ScreenUpdating = False

lbTitle = Range("A" & ActiveCell.Row) & " - " & Range("B" & ActiveCell.Row)
Set Pict = Wks.Pictures.Insert(ActiveCell.Comment.Text)
Pict.Name = "i" & ActiveCell.Value
myPicture = "i" & ActiveCell.Value

With Pict
    .ShapeRange.LockAspectRatio = msoTrue
    .ShapeRange.Width = 500
    .ShapeRange.Height = 500
End With

Set oChartObj = Wks.ChartObjects.Add(Top:=0, Left:=0, Width:=805, Height:=417)

With Wks
    .Shapes(myPicture).Copy

    With oChartObj.Chart
        .ChartArea.Select
        .Paste
    End With
    
    FName = Environ("temp") & "\temp.gif"
    .ChartObjects(5).Chart.Export FName
    Image2.Picture = LoadPicture(FName)
    oChartObj.Delete
    .Shapes(myPicture).Delete
    Kill FName
End With

Wks.Protect Password:="Password"
Application.ScreenUpdating = True
End Sub
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
1. There is a lot of good advice at that link you posted. Did you try all the suggestions?

Only issue is that I'm not using any data. The code only adds a PNG image to the sheet then copies that image to a chart object so I can load it to a userform.

2. If you are not using the chart object as a chart, but merely as a mechanism for transfering a graphic image to a userform, why not forget the chart object and just directly load the image to the userform?
 
Upvote 0
1. There is a lot of good advice at that link you posted. Did you try all the suggestions?

Their suggestion did not work for me.


2. If you are not using the chart object as a chart, but merely as a mechanism for transfering a graphic image to a userform, why not forget the chart object and just directly load the image to the userform?

The image I'm using is a PNG. To insert a image to a userform, it must be a GIF. However, the image is of low quality compared to PNG. Hence the reason why I've using this coding method. That being said, I may have missed it, but did you have any suggestion as to how I could resolve this issue to my original question?
 
Upvote 0
The image I'm using is a PNG. To insert a image to a userform, it must be a GIF.

Technically not true. The image control or even the userform picture property can support many more image formats besides .gif. You could use a .jpg. for example.


That being said, I may have missed it, but did you have any suggestion as to how I could resolve this issue to my original question?

If you are determined to use the ChartObject, then the only thought I can offer is that if the ChartObject is sensitive the amount of data on your worksheet, and your code only adds a PNG image to the sheet then copies that image to a chart object so you can load it to a userform, why are you doing it on a worksheet with so much data? Instead maybe create a blank worksheet with no data at all, and do the chart add there.
 
Upvote 1
Solution
If I were doing this for myself, I would probably try to adapt Stephen Bullen's 'PastePicture' code to convert the .png to a .jpg that could be easily imported into an Image control on my userform.
 
Upvote 0
If you are determined to use the ChartObject, then the only thought I can offer is that if the ChartObject is sensitive the amount of data on your worksheet, and your code only adds a PNG image to the sheet then copies that image to a chart object so you can load it to a userform, why are you doing it on a worksheet with so much data? Instead maybe create a blank worksheet with no data at all, and do the chart add there.

This may be an idea I can use. Thank you for the suggestion. Greatly appreciated Will let you know how it works
 
Upvote 0

Forum statistics

Threads
1,215,617
Messages
6,125,867
Members
449,266
Latest member
davinroach

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