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
diogovaz
Frequent Visitor

Decimal Values

Hi guys,

 

I have a power bi project that is connect to Redshift Database via DirectQuery.

When I'm in Edit Query I saw this:

Captura de ecrã 2018-04-16, às 14.34.55.png

 

But when I'm building my report this is what appears:

Captura de ecrã 2018-04-16, às 14.37.28.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

The decimal numbers are not appear. Can you help me on this?

 

Thanks

1 ACCEPTED SOLUTION
diogovaz
Frequent Visitor

Resolved!

 

Edit Query - Right Click on variable - Transform - Absolute Value

 

Captura de ecrã 2018-04-16, às 16.53.27.png

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hello,

 

I stumbled upon the same issue when working with Power BI and Redshift. diego's solution works as described but only if you work with positive values; a better unexpected solution is to use the Power Query editor in Power BI and apply a Standard Transformation to the column such as Multiplying the value by one or adding 0 to the value.

 

The standard query without the transformation casts the return value as decimal which in Redshift defaults to using 0 decimal values:

select sum(CAST("mov_div_amount" AS DECIMAL ) ) as "C1" from ( select "mov_div_amount" from "main"."public"."facmovementdivision" where "mov_div_date" >= TIMESTAMP '2018-12-31 00:00:01') as "ITBL"

After the suggested transformation is applied, the query instead returns a double and looks like the following:

select sum("C1") as "C1" from ( select CAST("mov_div_amount" AS DOUBLE PRECISION ) * CAST(1 as float8) as "C1" from "main"."public"."facmovementdivision" where "mov_div_date" >= TIMESTAMP '2018-12-31 00:00:01') as "ITBL"

This solution is viable when working with two decimals or less because the default precision for double in Redshift is 2. The ideal solution would be for the Power BI Redshift connector to avoid this cast when using numeric/decimal fields.

 

Here's an image of two visuals comparing the same value before and after the suggested transformation:

Captura.JPG

 

 

 

 

 

 

 

I hope this helps!

diogovaz
Frequent Visitor

Resolved!

 

Edit Query - Right Click on variable - Transform - Absolute Value

 

Captura de ecrã 2018-04-16, às 16.53.27.png

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.