Why do charts disappear?

S

septimus

I seem to have amazing disappearing Excel charts and I need to find
out how to prevent them from disappearing.

My process starts in Access. A VBA procedure in Access opens an Excel
workbook as a template in the background. Data is plugged into a
worksheet named "Data." Then Access calls a macro in the Excel
template workbook which changes SERIES formulas for four different
charts on four different worksheets. Then the program updates the
colors on the bars of the bar charts. Once that's done, Access saves
the template as a finished report and makes the workbook visible.

The problem is that when the Excel workbook becomes visible the charts
are invisible. I can find the frame of the chart but the contents are
totally blank.

However, when I close the workbook and re-open it the charts are
there, and they're perfect.

Do I need to run a VBA command like a Refresh or Requery or Repaint or
something like that to make the charts appear without having to close
and re-open the workbook?

Thanks!
 
P

Paul Robinson

Another handy line to put in when updating graphics is
DoEvents

put this in after your chart update code. Not saying it will work, but
I find it can force graphics to update more often than not.
regards
Paul
 
S

septimus

Still haven't found a fix for this problem. DoEvents didn't help. Any
other ideas, gang?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top