Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Rounding Issue with ODBC & SQL Server vs SQL server connector

With Power query, I read a sql database from a field Numeric(23,7) define and I have around 3.7 millions lines.  All my 3.7 millions have only 2 decimal value ...

fhebertdesj_2-1660683282529.png


If a use ms-sql server connector and read my 3.7 millions and done a sum, return two decimal value:

fhebertdesj_0-1660683122389.png

 

If I use odbc connection to my sql database my sum return more then two decimal value...

fhebertdesj_1-1660683201499.png

 

Why ODBC connection return false result?  

Frédéric Hébert

 





1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

decimal numbers are stored as approximations. so instead of 10.20 you may see it stored as 10.19999999  .  Given enough numbers that difference can add up.

Process your numbers so they round to the nearest hundredth  before summing them.

View solution in original post

4 REPLIES 4
lbendlin
Super User
Super User

decimal numbers are stored as approximations. so instead of 10.20 you may see it stored as 10.19999999  .  Given enough numbers that difference can add up.

Process your numbers so they round to the nearest hundredth  before summing them.

Hi

 

Since I have a very similar issue, I would like to ask you to clarify on this topic. Are you saying that Power BI stores approximations? Why would that be the case, when importing via ODBC but not when importing from SQL?

Moreover, I have noticed that Power BI displays the correct values when importing via ODBC for whole numbers and "divided by two numbers" like .0, .5, .25, .75, .125 and so on. So in this case, there is no approximation happening.

 

In my opinion, this is a bug in the ODBC connector inside Power BI. Am I wrong about this?

 

Thank you in advance and best,

Marco

Anonymous
Not applicable

Hi Marco, Yes my problem with ODBC and sum is done in Power Query is wrong because return value after two decimal and all my data is two decimal or less.  I don't have this problem if use sql connector.  


It's not as much a bug as it is a precision limitation.

 

Computers store data in bits and bytes. Anything that is not a power of 2 will always be approximated. Eventually the number of bytes used for the storage of a number will define the precision limits. These connectors likely use different numbers of bytes.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors