Format a number with a % symbol.
Syntax FormatPercent(number [,DecimalPlaces [,IncludeLeadingZero [,UseParenthesis [, GroupDigits]]]] ) Key number The number to format. DecimalPlaces Number of digits to display after the decimal point. IncludeLeadingZero Include a leading zero for numbers <1 and > -1 UseParenthesis Show negative numbers in Parentheis (500) = -500 GroupDigits Group large numbers with commas (or the regional delimiter)
Example
Set intDemo = 64.323 WScript.Echo FormatPercent(intDemo,1)
“Sex appeal is fifty percent what you've got and fifty percent what people think you've got” ~ Sophia Loren
Related:
FormatCurrency - Format a number with a currency symbol
FormatNumber - Format a number
FormatDateTime - Format a Date/Time value
Equivalent Powershell command: $myvar = "{0:P1}" -f 0.175 Returns 17.5%