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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
gbarredap
Regular Visitor

Multiply columns

I need to multiply 2 different columns; hours and rate per hour. The issue here is that I have different rates for different ranks and each project is the sum of the multiplication of hours at different rates.

 

I have achieved to calculate the total price when I show the maximum detail.

 

E.g. R1 x hours

       R2 x hours

      R3 x hours

 

With the code

 

Valorizado = SUMX(ARMS,ARMS[total]) * SUMX(PL,PL[Person Billing Rate])

 

Where ARMS are the hours per project.

 

This works fine when I show the whole detail, but when I want to show only the information by project, what the code understands is the following:

 

Sum( R1 +R2+R3) x Sum(hours)

 

Please I need help with this!

1 ACCEPTED SOLUTION
v-qiuyu-msft
Community Support
Community Support

Hi @gbarredap,

 

If I understand you correctly, there is a relationship between ARMS and PL, to calculate multiplication then add total, you can create a measure in PL table like below:

 

Measure 2 = SUMX('PL',PL[Person Billing Rate]*RELATED(ARMS[total]))

 

q3.PNG

 

If the above measure doesn't work, please share some sample data and expected results for our analysis.

 

Best Regards,

Qiuyun Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-qiuyu-msft
Community Support
Community Support

Hi @gbarredap,

 

If I understand you correctly, there is a relationship between ARMS and PL, to calculate multiplication then add total, you can create a measure in PL table like below:

 

Measure 2 = SUMX('PL',PL[Person Billing Rate]*RELATED(ARMS[total]))

 

q3.PNG

 

If the above measure doesn't work, please share some sample data and expected results for our analysis.

 

Best Regards,

Qiuyun Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi @gbarredap

 

Could please share your data model and the expected output to find a solution.

 

Cheers

 

CheenuSing

Helpful resources

Announcements
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors