View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Frank[_28_] Frank[_28_] is offline
external usenet poster
 
Posts: 14
Default Graph not plotting correctly if source not selected

Here my code:

Set Cht_level = Charts.Add
With Cht_level
.ChartType = xlLine
.SetSourceData Source:=cht_src
End With

if fails.

But if I

add cht_src.Select

before the code, it works brilliantly?

Why?