Forum Discussion
dataflows is truncating my 19 digit number
Hi Neptune87 ,
By my tests with bigint type, I could reproduce your issue.
I'm afraid that should be by design in dataflow.
For a workaround, you may change the data type to be nvarchar so that it will be detect as text type when load in dataflow, then you could change it to be whole number type.
Best Regards,
Cherry
Explanation of the fundamental need to solve the bigint problem in dataflow:
For us, this problem occurs when trying to load data from accounting system tables (1C) into a power bi project via dataflow. Initially, the values of the key fields of all tables of the accounting system (1C) have the form similar to this "ed1f21b7-6978-4cf0-8129-8ed16-f738103-dfeab1" . Which allows you to make power bi projects using text key fields in downloadable tables. But on big data, this makes the project heavier and slower.
Provided, that millions of users work with the accounting system (1C), we would like to work with the BIGINT type for long key fields in DATAFLOW without unnecessary transformations and to have the INT64 data type worked equally well in both the power bi desktop project and dataflow.