Forum Discussion
Convert Amount K to Million
Hi All,
Help me to convert the amount $K to Millions in DAX/PowerBI.
Thanks
- Anonymous8 years ago
BIbeginner,
You can create column using DAX below.Column = FORMAT ( Table[Amount], "#,##0,,M" )
Alternatively, you can directly create visuals using Amount column, then change the display unit to Million.
If the above steps don't help, please share sample data of your amount column.
Regards,
Lydia
2 Replies
- AnonymousNot applicable
BIbeginner,
You can create column using DAX below.Column = FORMAT ( Table[Amount], "#,##0,,M" )
Alternatively, you can directly create visuals using Amount column, then change the display unit to Million.
If the above steps don't help, please share sample data of your amount column.
Regards,
Lydia- AnonymousNot applicable
Hi there,
the figures in my table are actually all k euro. So what I'm looking for is essentially the numerical value of say 4,123 in my table to be potrayed as 4.1M euro instead of how power BI is reading it as a literal 4.1k euro. I don't blame it, but I'm looking for a way around this by custom formatting my data manually. since the 4,123 in my table is a figure represented as k euro. Can anyone please help me ? Thanks.