From http://www.w3schools.com (Copyright Refsnes Data)
Complete VBScript Reference
The FormatPercent function returns an expression formatted as a percentage (multiplied by 100) with a trailing % character.
|
FormatPercent(Expression[,NumDigAfterDec[, IncLeadingDig[,UseParForNegNum[,GroupDig]]]]) |
| Parameter | Description |
|---|---|
| expression | Required. The expression to be formatted |
| NumDigAfterDec | Optional. Indicates how many places to the right of the decimal are displayed. Default is -1 (the computer's regional settings are used) |
| IncLeadingDig | Optional. Indicates whether or not a leading zero is
displayed for fractional values:
|
| UseParForNegNum | Optional. Indicates whether or not to place negative
values within parentheses:
|
| GroupDig | Optional. Indicates whether or not numbers are grouped
using the group delimiter specified in the computer's regional settings:
|
|
'How many percent is 6 of 345? document.write(FormatPercent(6/345)) Output: 1.74% |
|
'How many percent is 6 of 345? document.write(FormatPercent(6/345,1)) Output: 1.7% |
Complete VBScript Reference
From http://www.w3schools.com (Copyright Refsnes Data)