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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Combine two non-text measures

Hopefully a simple solution.

 

I have two measures to calculate:

- Count of tickets over 30 days

-% tickets over 30 days

 

I'd like to create a third measure to display the measures in a table similar to the below;

 Week 1Week 2
Team A75% , 4% , count
Team B50% , 20100%, 4

 

I've attemped to use the below however it returns the % as a decimal.

Measure = COMBINEVALUES(" , ",% measure, count measure)

 

3 REPLIES 3
Payeras_BI
Solution Sage
Solution Sage

Hi @Anonymous ,

 

Try with this:

 

Measure = FORMAT([% over 30 days],"#%") & " , (" & [30 Days] & ")"

 

Regards,

If this post answered your question, please mark it as a solution to help other users find useful content.
Kudos are another nice way to acknowledge those who tried to help you.

J. Payeras
Mallorca, Spain
Anonymous
Not applicable

Chnage measure values to text and use concatenate

Anonymous
Not applicable

Thank you for the response. I have been able to produce the below.

How do I keep the [% over 30 days] to show as a % such as 25% rather than 25.3968...

 

Measure = ([% over 30 days]*100) & " , (" & [30 Days] & ")"

Untitled.png

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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