The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi experts, I'm wondering how to get the real mumbers rather than the characters, for example:
how to make the E in to values?
the datatype of the calculation:
Hi @oakfootballclub ,
Thanks for reaching out to our community.
I've tried to reproduce your scenario but failed.
Did you use the custom format?
Use custom format strings in Power BI Desktop - Power BI | Microsoft Learn
Please provide us with more detailed information about the issue.
If the issue has been resolved within these days. It's good to share your workaround with us.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
To transform the scientific notation (e.g., -2.20E-5) into real numbers in Power BI, you can follow these steps:
If formatting does not work, you can create a new column to explicitly convert the values. Use the following DAX formula:
This will convert scientific notation to a string with its full numeric representation.
Let me know if you need further assistance!
I hope this helps!
If you found this answer helpful:
Mark it as the solution to help others find it faster.
Give it a kudo to show your appreciation!
Thank you for being an awesome community member!
If I want to transform all the value in the format of 12,345,678.12, and there is no scientific notation, how can I set them, noticce that this is a measure
Thank you
If the data is a measure in Power BI, you can control its format to always display values in the format 12,345,678.12 (comma-separated with two decimal places). Here's how:
Select the Measure:
Open the Measure Properties:
Set Formatting:
Enable Thousands Separator:
If you want to explicitly format the value within the measure itself, use the following DAX formula:
Let me know if you need further clarification!
I hope this helps!
If you found this answer helpful:
Mark it as the solution to help others find it faster.
Give it a kudo to show your appreciation!
Thank you for being an awesome community member!