Superscripting in Powerpoint

K

karls123

Does anyone know how to Superscript part of a datalabel in PowerPoin
from Excel VBA.

The following code works.

VBA:

With oGraph.SeriesCollection(rowX)
For colY = 1 To .Points.Count
.Points(colY).DataLabel.Caption
.Points(colY).DataLabel.Caption & "ABC"
Next
End With

But I am unable to Superscript the "ABC"
 
Top