Does anyone know how to Superscript part of a datalabel in PowerPoint from Excel VBA.
The following code works.
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".
The following code works.
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".