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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
Employee
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
Employee
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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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