Forum Discussion
Custom Display unit for visualisation
- Anonymous1 year ago
Hi RajaSadagopan ,
I create a table as you mentioned.
The only displays of numbers in the Donut chart are the following.
Since Measure for Donut chart in PowerBI can only be placed in tooltips, you can create a Measure.
FormattedAmount = VAR AmountInBillion = MAX ( 'Table'[Amount] ) / 1000000000 RETURN FORMAT ( AmountInBillion, "0.0" ) & "B"If you want to use Dynamic Format Strings for Measures, you can check this official documentation below: Deep dive into the new Dynamic Format Strings for Measures! | Microsoft Power BI Blog | Microsoft Power BI
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi RajaSadagopan ,
I create a table as you mentioned.
The only displays of numbers in the Donut chart are the following.
Since Measure for Donut chart in PowerBI can only be placed in tooltips, you can create a Measure.
FormattedAmount =
VAR AmountInBillion =
MAX ( 'Table'[Amount] ) / 1000000000
RETURN
FORMAT ( AmountInBillion, "0.0" ) & "B"
If you want to use Dynamic Format Strings for Measures, you can check this official documentation below: Deep dive into the new Dynamic Format Strings for Measures! | Microsoft Power BI Blog | Microsoft Power BI
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.