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.

avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)