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
akhaliq7
Continued Contributor
Continued Contributor

Data from database showing as decimals cannot change to whole number w/out breaking q/folding

Numeric data that is coming from my database is automatically showing as decimal numbers when I try to change it to a whole number the query folding break. Also in my database those fields are shown as integers and not decimals. Problem is when I go on power bi desktop and create a table all the numbers show with decimal points even id's. Which I then need to manually change.

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

To preserve query folding, you can add a custom column with Int64.Type and use this custom column in your calculations. See below, how I am inserting one custom column by rounding the number and converting the column to Int64.Type

= Table.AddColumn(#"Previous Step", "Custom", each Number.Round([Unit_Price],0), Int64.Type)

Don't use below one which uses Int64.From as it does break query folding

= Table.AddColumn(#"Previous Step", "Custom", each Int64.From([Unit_Price]), Int64.Type)

Note - Both Number.Round and Int64.From use default rounding mode of RoundingMode.ToEven. This is what you get when you transform your column type to Whole number. Hence Number.Round to 0 decimal place yields the same result what you get from Int64.From or by selecting column and transforming column type to Whole number. Number.Round has added advantage of not breaking your query folding.

So, Rounding number to 0 decimal works whereas Int64.From doesn't work as regards query folding.

View solution in original post

1 REPLY 1
Vijay_A_Verma
Super User
Super User

To preserve query folding, you can add a custom column with Int64.Type and use this custom column in your calculations. See below, how I am inserting one custom column by rounding the number and converting the column to Int64.Type

= Table.AddColumn(#"Previous Step", "Custom", each Number.Round([Unit_Price],0), Int64.Type)

Don't use below one which uses Int64.From as it does break query folding

= Table.AddColumn(#"Previous Step", "Custom", each Int64.From([Unit_Price]), Int64.Type)

Note - Both Number.Round and Int64.From use default rounding mode of RoundingMode.ToEven. This is what you get when you transform your column type to Whole number. Hence Number.Round to 0 decimal place yields the same result what you get from Int64.From or by selecting column and transforming column type to Whole number. Number.Round has added advantage of not breaking your query folding.

So, Rounding number to 0 decimal works whereas Int64.From doesn't work as regards query folding.

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
Top Kudoed Authors