Userforms containing Graphs

Peter Rattigan

Board Regular
Joined
Oct 18, 2004
Messages
77
I have been searching this forum for info on creating a userform to display the graphs in my worksheet. I have found the code below to save the graph as a GIF. I have tried to make it work but I am having trouble with the syntax and was hoping someone could give me a hand with it. The file name is C:\Debt Projector and the sheet/chart is Sheets("loanportfolio").Chart(1).Chart


Code:
    Set CurrentChart = Sheets("Sheet1").ChartObjects(1).Chart
    Fname = ThisWorkbook.Path & "\temp.gif"
    CurrentChart.Export FileName:=Fname, FilterName:="GIF"

I presume I would load this code in the "This Workbook" area to run on opening so that the userform would display immediately.

Would the second portion of the code (below) run in the same sub routine?
Code:
Image1.Picture = LoadPicture(Fname)

Thanks for your help as I'm afraid my VB is pretty basic
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest

Forum statistics

Threads
1,219,162
Messages
6,146,660
Members
450,706
Latest member
LGVBPP

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