Forum Discussion

BIbeginner's avatar
BIbeginner
Frequent Visitor
8 years ago
Solved

Convert Amount K to Million

Hi All,

 

Help me to convert the amount $K to Millions in DAX/PowerBI.

 

 

Thanks

 

 

  • Anonymous's avatar
    Anonymous
    8 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

  • Anonymous's avatar
    Anonymous
    Not 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

    • Anonymous's avatar
      Anonymous
      Not 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.