PowerTip: Use PowerShell to display a percentage that has two decimal places

Doctor Scripto

Summary: Use Windows PowerShell to display a percentage as a two place number.

Hey, Scripting Guy! Question How can I use Windows PowerShell to display a number as a percentage that has two decimal places?

Hey, Scripting Guy! Answer Use the -f format specifier, and specify a pattern as “{0:p2}”. On the other side of the -f format specifier, perform your percentage calculation. Here is an example:

PS C:\> “{0:p2}” -f (1/10)

10.00 %

The Doctor

0 comments

Discussion is closed.

Feedback usabilla icon