Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Dear PBI Community!
I have the following switch-measure which is used to show different financial and volume measures within one and the same visual.
What I am looking to do is have "(Selected) Value" be formatted with 2 decimals IF "volume" is selected from the dropdown and show no decimals if any other of the values is selected (Revenue, CM or GP).
Could you please help me accomplish this in the DAX below?
(Selected) Value =
VAR Selection = SELECTEDVALUE('Dim_Measure_Selection_Master'[Value Types], "ALL" )
RETURN
SWITCH(true(),
Selection = "Volume", [Volume (MT)],
Selection = "Revenue", [Total Revenue ($)],
Selection = "Contribution Margin", [Total Contribution Margin ($)],
Selection = "Gross Profit", [Total Gross Profit ($)],
[Total Contribution Margin ($)]
)
Thank you very much!
Solved! Go to Solution.
Use the FORMAT function to get the result, but the best way is to use calculate group
Thank you for the prompt reply! I tried this however get an error, will the Format function make my measure into text?
Error Message:
MdxScript(Model) (110, 1) Calculation error in measure '_Measure_Selection_Cycle'[(Selected) Value]: Cannot convert value '' of type Text to type Numeric/Date.
yes the return value type of format is string
Use the FORMAT function to get the result, but the best way is to use calculate group
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 5 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 11 | |
| 9 | |
| 7 | |
| 6 |