I read the page about formatting PS Formatting, but my needs are a little different.
If I use numeric formatting for numbers bigger than 1000 I will always get something like this:
$x = 1000
"{0:N2}" -f $x
= 1,000.00
But what I need is: 1000.00 since I can't work with commas here.
So how do I make this work?