Formatting a textbox for percentages

P

Paula

I have a textbox that contains a number created by dividing one total by
another. I need to format that result as a percentage. Is there a way to do
that?
 
C

Chuck Henrich

Use the Percent named numeric format eg:

ActiveDocument.Shapes(1).TextFrame.TextRange.Text = _
Format(x / y, "Percent")
 
Top