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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.