New Chart

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi Group,

I try to use macro to create a chart on a new sheet (Daily). I have to
manually delete the chart each time I run the program. If I include the line
Sheets("Daily").Delete
in the program, I will get the prompt each time. Are there any better way to
do this?

Thanks.

Gian
 
Gian said:
Hi Group,

I try to use macro to create a chart on a new sheet (Daily). I have to
manually delete the chart each time I run the program. If I include the line
Sheets("Daily").Delete
in the program, I will get the prompt each time. Are there any better way to
do this?

Thanks.

Gian

Well, you can try this:
Application.DisplayAlerts = False
....
Application.DisplayAlerts = True

/Fredrik
 
Thanks Fredrik.

Fredrik Wahlgren said:
Well, you can try this:
Application.DisplayAlerts = False
....
Application.DisplayAlerts = True

/Fredrik
 

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

Back
Top