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
AndySmith
Helper II
Helper II

Switch Selected Values - conditional formatting

Hi all

 

I have a Switch selected values expression to toggle between various user selected MTD measures. However some of these measures are $ and some will be %. Is it possible to combine the Format function with the below DAX? So something along the lines of 'IF(selected value = 5, Format "%", else $'

 

MTD = SWITCH(SELECTEDVALUE(Options[Index]),1,[Calc - Revenue - MTD],2,[Calc - DMP - MTD],3,[Calc - GM - MTD],4,[Calc - COGS - MTD],5,[Calc - DMP % - MTD],6,[Calc - Net Margin - MTD])
1 ACCEPTED SOLUTION
v-kelly-msft
Community Support
Community Support

Hi @AndySmith ,

 

Is below what you need?

v-kelly-msft_1-1614046791511.png

 

If so,create a measure similarly as below:

MTD = SWITCH(SELECTEDVALUE('Table'[Index]),
5,FORMAT([Calc - Revenue - MTD],"percent"),
"$"&[Calc - Revenue - MTD])

For the related .pbix file,pls see attached.

 

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

View solution in original post

4 REPLIES 4
v-kelly-msft
Community Support
Community Support

Hi @AndySmith ,

 

Is below what you need?

v-kelly-msft_1-1614046791511.png

 

If so,create a measure similarly as below:

MTD = SWITCH(SELECTEDVALUE('Table'[Index]),
5,FORMAT([Calc - Revenue - MTD],"percent"),
"$"&[Calc - Revenue - MTD])

For the related .pbix file,pls see attached.

 

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

Anand24
Super User
Super User

Hi @AndySmith ,

I don't think this will be possible because its like having different formatting on the same measure which is not allowed in Power BI.

If its okay for you to have these values as text, then you can probably have the DAX accordingly.

 

PBI_SuperUser_Rank@1x.png  

Give a Thumbs Up if this post helped you in any way and Mark This Post as Solution if it solved your query !!!

Proud To Be a Super User !!!
LinkedIn

How would they be displayed as text?

@AndySmith ,
They will be just text values. You won't be able to get any aggregations that you are currently getting in your measure selector I guess.

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.