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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi
I'm trying to construct a Measure Calculation that is based on Parameters - if possible...
I have a standard model with Product, Customer and Date. And for comparrison purposes i also have a range of baseline dimensions that are related to the same column in the fact table.
Baseline Product
Baseline Date
Baseline Customer
All three tables for baseline have relationships to the fact table, but are set as inactive (while Product, Date and Customer tables are active)
Now, if the user is using one or more of the baseline table to filter ex. the "Baseline Sale" they should overrule the active counterpart, but if they are not filtered, the already active relationship should be used.
As there are currently 3 "baseline tables" there are 9 different combinations that I could do IF statements to handle although it's not going to be pretty, so i was wondering if Parameters could be used to "construct" the calculation - something like:
Baseline Sale =
VAR Parameter1 =
IF (
ISCROSSFILTERED ( 'Baseline Customer' ),
"USERELATIONSHIP('Baseline Customer'[Customer Code],Sales[Customer Code]),ALL(Customer)",
""
)
VAR Parameter2 =
IF (
ISCROSSFILTERED ( 'Baseline Date' ),
"USERELATIONSHIP('Baseline Date'[Date],Sales[Date]),ALL(Date)",
""
)
VAR Parameter3 =
IF (
ISCROSSFILTERED ( 'Baseline Products' ),
"USERELATIONSHIP('Baseline Products'[Product Code],Sales[Product Code]),ALL(Products)",
""
)
RETURN
CALCULATE ( SUM ( Sales[Sales] ), Parameter1, Parameter2, Parameter3 )
So if ex. Baseline Customer is crossfiltered, use Baseline Customer relationship instead otherwise do nothing etc. That way the final calculation might end up just using baseline relationship for ex. just Date and Product
Any ideas are welcome 🙂
As far as I know, this is not supported. You may submit an idea via https://ideas.powerbi.com/forums/265200-power-bi.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 54 | |
| 41 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 106 | |
| 99 | |
| 38 | |
| 29 | |
| 28 |