Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I have noticed that Multirow card, doesnt have an option to covert the values to Millions. take a look at below
how will i convert this to Millions? i want to see the numbers look like 238.1M
Solved! Go to Solution.
That's because you passing in a column rather than a measure.
Wrap that column in an aggregation function or reference a measure instead and try again.
FORMAT(SUM(pipeline[Total Value Of Potential Sale (USD)]), "#,,.0M")
When you were using that column seemingly without the SUM before adding the FORMAT function, Power BI created an implicit measure that did the aggregation, but you can't reference implicit measures.
You can use the FORMAT function.
FORMAT([measure], "#,,.0M")
You can read more about user-defined formats here:
https://docs.microsoft.com/en-us/dax/custom-numeric-formats-for-the-format-function
You're missing a comma after your measure
That's because you passing in a column rather than a measure.
Wrap that column in an aggregation function or reference a measure instead and try again.
FORMAT(SUM(pipeline[Total Value Of Potential Sale (USD)]), "#,,.0M")
When you were using that column seemingly without the SUM before adding the FORMAT function, Power BI created an implicit measure that did the aggregation, but you can't reference implicit measures.
Hello, I tried this and it did convert my values but i can't format the data values in multi-row card. Any work around for this.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.