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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
lookieuk
New Member

help with DAX SUMX

Hello!

I'm just starting out with DAX and Power BI. I've created a basic DAX measure where I calculate two columns after applying a filter on other columns.

My question is: Is there a way to use the result from the part cost measure and multiply it by another column value that has been filtered in the same way as the part cost measure?

 

my DAX code:

Parts Cost = CALCULATE(SUMX(FILTER(QuoteCostSheetLine,QuoteCostSheetLine[wb_ActivityCode] = "Parts"),QuoteCostSheetLine[Quantity] * QuoteCostSheetLine[wb_CostRate]))
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @lookieuk 

 

Thanks for the reply from lbendlin .

 

The following is a test I did using sample data for your reference.

vxuxinyimsft_0-1732785415644.png

 

Measure:

Result = 
VAR _M1 = CALCULATE(SUM(financials[Profit]), FILTER('financials', [Country] = "Canada"))
VAR _M2 = CALCULATE(SUM(financials[Sale Price]), FILTER('financials', [Country] = "Canada"))
RETURN
_M1 * _M2

 

Output:

vxuxinyimsft_1-1732785751164.png

 

If the problem still exists, then as Lindlin said, you need to provide sample data and expected results based on the sample data so that we can better help you. Please remove any sensitive data in advance.

 

Best Regards,
Yulia Xu

 

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
lbendlin
Super User
Super User

Yeah, that code looks a little adventurous.

 

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).

Do not include sensitive information. Do not include anything that is unrelated to the issue or question.

Need help uploading data? https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...

Please show the expected outcome based on the sample data you provided.

Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

Anonymous
Not applicable

Hi @lookieuk 

 

Thanks for the reply from lbendlin .

 

The following is a test I did using sample data for your reference.

vxuxinyimsft_0-1732785415644.png

 

Measure:

Result = 
VAR _M1 = CALCULATE(SUM(financials[Profit]), FILTER('financials', [Country] = "Canada"))
VAR _M2 = CALCULATE(SUM(financials[Sale Price]), FILTER('financials', [Country] = "Canada"))
RETURN
_M1 * _M2

 

Output:

vxuxinyimsft_1-1732785751164.png

 

If the problem still exists, then as Lindlin said, you need to provide sample data and expected results based on the sample data so that we can better help you. Please remove any sensitive data in advance.

 

Best Regards,
Yulia Xu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
November Fabric Update Carousel

Fabric Monthly Update - November 2025

Check out the November 2025 Fabric update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Users online (27)