Yup, figured out the problem. Apparently you can’t format a string with ToString, it’s got to be an int for float. So I’m converting the string to an int and then using System.String.Format
Are you saying there’s a way to get String.Format to work on strings without first converting to an int. I tried the following but got errors:
System.String.Format("0:0n", "123456");
What parameter can I use with String.Format to add commas after every 3 characters in a string?