Setup to put all numbers in european format 1.190,21 instead 1,190.21

Hello!

Is there a way to setup all numbers in Ignition in european format 1.190,21

Now all binded data appear in american format even the original database is in european format

Now I´m doing it with Jython:

  formatted_number = "{:,.2f}".format(cell_value).replace(",", "X").replace(".", ",").replace("X", ".")
	                cell_value = "{}".format(formatted_number)

Cheers

Change the locale in the session props.

1 Like