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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi there,
I have 2 facts based on 2 differents tables: SalesAmount and BudgetAmount.
I'd like to create a measure "SalesComparsion" which should consider "SalesAmount" only if the Customer (dimension joined to both facts), has a budget, this measure should work though I do not use the "customer" as detail in the analysis, for instance a monthly analysis.
How do I solve this?
Thank you
Solved! Go to Solution.
Hi @Anonymous
Try this to find the Sale Amount:
Measure =
VAR _A =
FILTER (
ADDCOLUMNS (
SALE,
"Budget", LOOKUPVALUE ( BUDGET[AMOUNT], BUDGET[Customer_COD], SALE[Customer_COD] )
),
[Budget] > 0
)
RETURN
SUMX ( _A, [AMOUNT] )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Hi @Anonymous
Can you add a sample of your data n a table format, and result?
Appreciate your Kudos!!
Hi @VahidDM ,
some screenshots: the relations of the 3 involved, data contained and the actual results.
ThanksRelations
Data
Results
Hi @Anonymous
Try this to find the Sale Amount:
Measure =
VAR _A =
FILTER (
ADDCOLUMNS (
SALE,
"Budget", LOOKUPVALUE ( BUDGET[AMOUNT], BUDGET[Customer_COD], SALE[Customer_COD] )
),
[Budget] > 0
)
RETURN
SUMX ( _A, [AMOUNT] )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Great!
It's exactly what I war looking for.
Thanks