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
ovonel
Post Prodigy
Post Prodigy

make dynamic format of a measure?

I have this measure in DAX:

SWITCH ( TRUE () ,
 MIN ( 'Dynam'[ID] ) = 5 , DIVIDE ( [Gross] , [Revenue] ) * 100,    
 MIN ( 'Dynam'[ID] ) = 8 ,  [Hours]

)

 

I would like the first one to have one decimal, but not the second one.

 

Can I do a formatting for one row only? (in either DAX or Power BI)

 

As of now, I have it like this for the entire measure: 

ovonel_1-1652712081331.png

 

 

 

 

 

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @ovonel .

 

In this case you can use the FORMAT function inside your SWITCH:

SWITCH ( TRUE () ,
 MIN ( 'Dynam'[ID] ) = 5 , FORMAT(DIVIDE ( [Gross] , [Revenue] ) * 100, "#.0),    
 MIN ( 'Dynam'[ID] ) = 8 ,  FORMAT([Hours], #)

)

Regards

Miguel Félix


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

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

2 REPLIES 2
v-yanjiang-msft
Community Support
Community Support

Hi @ovonel ,

Is your problem solved?? If so, Would you mind accept the helpful replies as solutions? Then we are able to close the thread. More people who have the same requirement will find the solution quickly and benefit here. Thank you.

Best Regards,
Community Support Team _ kalyj

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

MFelix
Super User
Super User

Hi @ovonel .

 

In this case you can use the FORMAT function inside your SWITCH:

SWITCH ( TRUE () ,
 MIN ( 'Dynam'[ID] ) = 5 , FORMAT(DIVIDE ( [Gross] , [Revenue] ) * 100, "#.0),    
 MIN ( 'Dynam'[ID] ) = 8 ,  FORMAT([Hours], #)

)

Regards

Miguel Félix


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

Proud to be a Super User!

Check out my blog: Power BI em Português



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.