Why does a string template return different formatting for types with 2 and 4 decimal places?
I have the following piece of code. I want to format number with string templates. One variable has 2 decimal places, the other 4 decimal places but they represent the same number 50000 (fifty thousand). The first number is correctly formatted (German representation) 50.000,00, the other one however is formatted as 5 million 5.000.000,00! DATA:… Read More Why does a string template return different formatting for types with 2 and 4 decimal places?