Is it possible to display thousand separators (commas) in Visio display of parameter value. For example display parameter value of 123456.78 in Visio as 123,456.78
Thanks
Hi Jeff,
The RegexReplace placeholder is very powerful. You can also use this to get to your goal.
In my example, the session variable 'myTest' contains the value '123456.78'.
The RegexReplace is placed in the text of my shape and is defined as: [RegexReplace:[Sep:,§](\d)(?=(\d{3})+\b)§[var:myTest]§$1,]
As you can see, the Sep placeholder also had to be used, as we are using a comma in the replacement part.
Do note that this regex won’t work if you have more than two decimals after the ‘.’, so maybe there might be even better regex implementations.