Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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:
But when I'm building my report this is what appears:
The decimal numbers are not appear. Can you help me on this?
Thanks
Solved! Go to Solution.
Resolved!
Edit Query - Right Click on variable - Transform - Absolute Value
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:
I hope this helps!
Resolved!
Edit Query - Right Click on variable - Transform - Absolute Value
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 37 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 69 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |