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
MP-iCONN
Resolver I
Resolver I

Best way to combine two measured columns

I have two columns that have a filtered value and I wanted to see the best way to combine them into another column using DAX.

 

Number = zBookings[Booked Amt SUM]/(SUM(Invoice[IVM_InvoiceAmt]))
THAT NUMBER IS .88 for example
 
Denom = SUM(Invoice[IVM_InvoiceAmt])/SUM(Invoice[IVM_InvoiceAmt])
THAT NUMBER IS 1.00 for example

 

I want to combine these values into another column called Ratio and have it display as 0.88:1.0 with the colon as the seperator.

 

I tried everything I could to figure this out but wanted to see if anyone had a solution.

 

Thank your for any help with this.

 

Chad

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@MP-iCONN Maybe:

Column = FORMAT([Number],"0.00") & ":" & FORMAT([Denom],"0.0")

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

@MP-iCONN Maybe:

Column = FORMAT([Number],"0.00") & ":" & FORMAT([Denom],"0.0")

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Thank you very much, this worked perfect!

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.