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!View all the Fabric Data Days sessions on demand. View schedule
Lets consider i have a model like this. Relationship between sales and state is both
I want to see quota by state in a table
Quota of state XXXX will not be displayed in table as it has no sales table records, Is there any way to get that record without modifiying this model ?
I know we can achieve this by changin the model as below
But this model is reducig the performance when Seller details and sales data are seen together (We are doing this in direct query)
May be this could be a simple fix, Any help is appreciated.
Thanks,
Dinesh J.
Solved! Go to Solution.
Hi Dinesh,
There could be two methods.
Method one:
1. Create a new inactive relationship;
2. Create a measure.
Measure =
CALCULATE (
SUM ( Seller[Quota] ),
USERELATIONSHIP ( Seller[State ID], State[ID] )
)
Method two:
Create a measure.
Measure 2 =
IF (
MIN ( State[ID] ) IN VALUES ( Sales[State] ),
BLANK (),
CALCULATE (
SUM ( Seller[Quota] ),
FILTER ( Seller, Seller[State ID] = MIN ( State[ID] ) )
)
)
Best Regards,
Dale
Hi Dinesh,
There could be two methods.
Method one:
1. Create a new inactive relationship;
2. Create a measure.
Measure =
CALCULATE (
SUM ( Seller[Quota] ),
USERELATIONSHIP ( Seller[State ID], State[ID] )
)
Method two:
Create a measure.
Measure 2 =
IF (
MIN ( State[ID] ) IN VALUES ( Sales[State] ),
BLANK (),
CALCULATE (
SUM ( Seller[Quota] ),
FILTER ( Seller, Seller[State ID] = MIN ( State[ID] ) )
)
)
Best Regards,
Dale
Hi Dale,
This solution worked.
Thanks,
Dinesh J.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!