Forum Discussion
SGBaringa
2 years agoFrequent Visitor
Currency formatting
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 ...
- 2 years ago
Try this,
use the DAX formulae to convert the num in the currency formate.Measure =Var val = 23456789/10000RETURNFORMAT(val / 100, "£0") & "," &FORMAT(MOD(val, 100), "00ms")
Mark this as a solution.
Vallirajap
2 years agoResolver III
Try this,
use the DAX formulae to convert the num in the currency formate.
Measure =
Var val = 23456789/10000
RETURN
FORMAT(val / 100, "£0") & "," &
FORMAT(MOD(val, 100), "00ms")
Mark this as a solution.
SGBaringa
2 years agoFrequent Visitor
Thank you! 🙂