March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello PBI community,
Sorry for the silly question but I am having trouble formatting my currency value to look the way I want it.
I am trying to get a value that looks like this: 23 456 789
To this: £23,46ms
Any help would be appreciated. 🙂
Solved! Go to Solution.
Try this,
use the DAX formulae to convert the num in the currency formate.
Hi @SGBaringa,
No worries, You can create a calculated column for this or a measure like this:-
FormattedAmount =
VAR Amount = 'YourTableName'[Amount]
VAR FormattedValue = "£" & FORMAT(Amount / 1000000, "#,##0.00") & "ms"
RETURN
FormattedValue
Hope this will help you.
Thank you.
Try this,
use the DAX formulae to convert the num in the currency formate.
Thank you! 🙂
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
127 | |
82 | |
69 | |
53 | |
44 |
User | Count |
---|---|
202 | |
106 | |
100 | |
64 | |
56 |