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 calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.

Forum statistics

Threads
1,215,703
Messages
6,126,320
Members
449,308
Latest member
Ronaldj

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