Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I use a gauge in a Power BI paginated report.
In design it is OK
Start and end value have comma as decimal separator.
When I execute the report , start and end values are 0 and 100. I think french number format is not recognized.
A few weeks ago this was OK.
A solution ?
Solved! Go to Solution.
Thank you for your answer, that helped me to find the solution.
Using the conversion fonction Cdec it is OK when I execute the report.
Thank you for your answer, that helped me to find the solution.
Using the conversion fonction Cdec it is OK when I execute the report.
Hi, @Jacques-bzh
You can try using the following expression to transform the data within your expression:
CInt(Fields!YourFieldName.Value)
For further details, please refer to:
Type Conversion Functions - Microsoft Support
You can also directly transform the columns used by incorporating SQL statements in the query steps:
For further details, please refer to:
CAST and CONVERT (Transact-SQL) - SQL Server | Microsoft Learn
Of course, if you have any new discoveries or questions, please feel free to get in touch with us.
Best Regards,
Leroy Lu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.