I did get this working, thanks for your advice. Here's how I did it in the end:

Code:
decimal interestConversion = interestRateMonthly * 12;
txtInterestRate.Text = string.Format("{0:P2}", interestConversion);