Reputation: 2100
I am using Data Integration to get data from our online API. Apart of the data is a timestamp and this is printed like so on the website 1389227435641
but when it is printed up on a table it is printed like so 1.389227435641E12
How do I get it to print like it is from the website and not like the way it is now?
Upvotes: 0
Views: 2185
Reputation: 140
Is the API returning the number in scientific notation?
If you want to convert 1.389227435641E12 to another format, import it as a BigNumber then use Select Values and change the Format.
Upvotes: 2