View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Knut Hollund Knut Hollund is offline
external usenet poster
 
Posts: 2
Default Excel/VBA question: Link ChartTitle at run-time, anyone?

Using VBA and Excel I'm trying to link the ChartTitle of an embedded chart
to a cell, but I always get an runtime error. Do anyone know how to do this?

Here is what I try to do:

.ChartObjects(name).Chart.ChartTitle.Text = "=" & .Cells(row, 1).address

(the . is a worksheet, name is the correct string and row is an nice
integer..)

K__t