I’m retrieving a Double from a spreadsheet or data table. I want to write the value to a Word doc using Replace Text. My Replace with is: TotalPortfolio.ToString(“C”) which produces an unprintable character instead of a dollar sign ($). The same with WriteLine: TotalPortfolio = ¤7,733.33.
I tried “C2” and that didn’t work.
I tried (“C2, en-US”) and that gave me an error.
As a workaround I’m using this: “$” +TotalPortfolio.ToString(“N2”)