Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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:
Solved! Go to Solution.
Hi @lookieuk
Thanks for the reply from lbendlin .
The following is a test I did using sample data for your reference.
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:
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.
Hi @lookieuk
Thanks for the reply from lbendlin .
The following is a test I did using sample data for your reference.
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:
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.
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...
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.
User | Count |
---|---|
9 | |
8 | |
7 | |
4 | |
3 |