Integers always rounded above 16 digets

I have an integer, 624776546741256233. But when I put it in, seatable rounds it to 624776546741256200. I am using these integers for IDs so the must be 100% accurate. I have tried turning on “enforce precision”, but that doesn’t help.

Is there anyway I could keep it as an integer and have the accuracy. If not, I guess this is a feature request.

You can use text column to store the IDs instead of number column. JavaScript integer cannot store such large number.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.