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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Clarification in table relationship

 

Lets consider i have a model like this. Relationship between sales and state is both

Model.JPG

 

I want to see quota by state in a table

 

State quota table.JPG

 

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

 

Alter model.JPG

 

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.

1 ACCEPTED SOLUTION
v-jiascu-msft
Microsoft Employee
Microsoft Employee

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] )
)

Clarification_in_table_relationship1

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] ) )
    )
)

Clarification_in_table_relationship2

 

Best Regards,

Dale

Community Support Team _ Dale
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
v-jiascu-msft
Microsoft Employee
Microsoft Employee

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] )
)

Clarification_in_table_relationship1

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] ) )
    )
)

Clarification_in_table_relationship2

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi Dale,

This solution worked.

 

Thanks,

Dinesh J.

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.