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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Natia
Frequent Visitor

how to add a "/" slash sign to my measure result in dax

I have 2 percentage measures in separate cards (e.g. 10% and 20%). I want to add a "/" slash sign between them (like this: 10% / 20%). How can I do this? I thought one way would be to add this sign to the end of the first formula, but it makes my percentage formula to a text. What would you advice me? Thank you in advance.
1 ACCEPTED SOLUTION
eliasayyy
Memorable Member
Memorable Member

if you have 2 measures , then create a new measure

Add / = FORMAT([measure 1],"0.00%") & " / " & FORMAT([measure 2],"0.00%)

if you dont want the format 10.00% then 

Add / = FORMAT([measure 1],"0%") & " / " & FORMAT([measure 2],"0%)

View solution in original post

1 REPLY 1
eliasayyy
Memorable Member
Memorable Member

if you have 2 measures , then create a new measure

Add / = FORMAT([measure 1],"0.00%") & " / " & FORMAT([measure 2],"0.00%)

if you dont want the format 10.00% then 

Add / = FORMAT([measure 1],"0%") & " / " & FORMAT([measure 2],"0%)

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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