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
nmartinovic
Regular Visitor

Create a calculated measure based on a column and measure

Hello,

 

I would like to create a table within Power BI Desktop.  I have a benchmark column, and a closed ticket measure.  I would like to create a new value that is the first two values multiplied by one another.  When I try and do this I get an error.

 

Any ideas?

 

Category TierBenchmarkClosed TicketsTicket Factor
MDA212
WEDCS428
BlueKaik6318

 

Sincerely,

 

Nick

1 ACCEPTED SOLUTION
Rémi
Resolver III
Resolver III

Hi,

 

The problem is that you need to apply a calcul on your column before multiply it with your measure.

You have several solutions for that :

 

Sum first then multiplication :

New Measure = SUM( [benchmark] ) * [closed ticket]

Multiplication then sum :

New measure = SUMX( 'YourTable' ; [benchmark] * [closed ticket] )

 

You can use SUMMARIZE fonction if the situation is more complicated, but those examples is sufficient to my opinion.

View solution in original post

1 REPLY 1
Rémi
Resolver III
Resolver III

Hi,

 

The problem is that you need to apply a calcul on your column before multiply it with your measure.

You have several solutions for that :

 

Sum first then multiplication :

New Measure = SUM( [benchmark] ) * [closed ticket]

Multiplication then sum :

New measure = SUMX( 'YourTable' ; [benchmark] * [closed ticket] )

 

You can use SUMMARIZE fonction if the situation is more complicated, but those examples is sufficient to my opinion.

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.