Prevent scientific notation in apps

Hi all,
I have the following number in my dataset: 17431358.98
My app is displaying it as 1.743135898E7
I’d like to prevent that, can you help me?

Thanks a lot!

You can define format options in the columnStyle part of a data Table:

"columnStyles": [
        {
          "name": "A"
        },
        {
          "name": "B",
          "table": {
            "format": "0,0"
          }
        },
[...]

If You do not use a table, the option might have a similar name :slight_smile:

For a specific table and column you can also use something like this:
image