comment recuperer un objet en vb excel ??

comment recuperer un objet en vb excel ?? - VB/VBA/VBS - Programmation

Marsh Posté le 24-09-2003 à 14:36:30    


 
VOila j'ai un graphique sur ma feuille TBM et j'aimerai le recuperer dans mon code vb ??
 
help me !!

Reply

Marsh Posté le 24-09-2003 à 14:36:30   

Reply

Marsh Posté le 24-09-2003 à 14:46:14    

a voir j'arrive a recuperer mon objet avezc :
 
Set graph1 = Worksheets("TBM" ).ChartObjects.Item(1)
 
maintenant je voudrais mmodifier les données sources avec :
 
graph1.SetSourceData Source:=Sheets("DONNEES" ).Range("f3:f4" ), PlotBy:=xlColumns
 
graph1.SetSourceData Source:=Sheets("DONNEES" ).Range("g3:i4" ), _
PlotBy:=xlRows
 
 
MAIS ca ne marche pas, where is the pb ??

Reply

Marsh Posté le 24-09-2003 à 14:50:58    

tiens fais comme ca :
 
 
Worksheets("TBM" ).ChartObjects(1).Activate
 
ActiveChart.SetSourceData Source:=Sheets("DONNEES" ).Range("f3:f4" ), PlotBy:=xlColumns
 
ActiveChart.SetSourceData Source:=Sheets("DONNEES" ).Range("g3:i4" ), PlotBy:=xlRowsType
 
 
 

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed