A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
This is great Rich! You are a genius!
I ended up using this and I full tested it's limitations hehe
With activeSlide.Shapes(2).TextFrame.TextRange
'Get the text to the right of the chart:
Set Rng = Range(Cells(cht.TopLeftCell.Row, "J"), Cells(cht.BottomRightCell.Row, "J"))
For Each c In Rng 'loop through each cell in column J next to the chart...
If c.Value <> "" And c.Value <> "Callouts:" Then
.InsertAfter (c.Value & vbNewLine)
End If
Next c
'Change the font size of the PlaceHolder:
.Font.Size = 16
End With
Next cht
The adding to the end of the ppt is exactly what I wanted because I want it to be flexible etc.
Thanks again!
Ian