Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
MrDatanaut
New Member

Conditional formatting a switch measure

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! 

1 ACCEPTED SOLUTION
jameszhang0805
Resolver IV
Resolver IV

Use the FORMAT function to get the result, but the best way is to use calculate group

jameszhang0805_0-1613744165446.png

jameszhang0805_1-1613744208184.png

 

View solution in original post

3 REPLIES 3
MrDatanaut
New Member

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

jameszhang0805
Resolver IV
Resolver IV

Use the FORMAT function to get the result, but the best way is to use calculate group

jameszhang0805_0-1613744165446.png

jameszhang0805_1-1613744208184.png

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors