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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
gvg
Post Prodigy
Post Prodigy

Using two or more USERELATIONSHIPs

Hi experts,

 

I am trying to sum Quantity by GroupName in the following relationship scenario. Tables are related via the same name fields.

 

Sales.jpg

 

This is simplified part of a much more complicated relationship scheme in which I can not have active relationships between these three tables. However, I read that one can use nested USERELATIONSHIP instructions. How do I do that?

 

Thank you.

 

1 ACCEPTED SOLUTION
OwenAuger
Super User
Super User

Hi @gvg

 

From the tables/relationships you've shown, you should just activate the two relationships simultaneously.

 

The measure should look something like:

 

=
CALCULATE (
    SUM ( Sales[Quantity] ),
    USERELATIONSHIP ( Sales[Product], Subgroup[Product] ),
    USERELATIONSHIP ( Subgroup[SubgroupName], Group[SubgroupName] )
)

 

You can also use the CROSSFILTER function with the same effect:

 

 

=
CALCULATE (
    SUM ( Sales[Quantity] ),
    CROSSFILTER ( Sales[Product], Subgroup[Product], OneWay ),
    CROSSFILTER ( Subgroup[SubgroupName], Group[SubgroupName], OneWay )
)

Owen 🙂


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

View solution in original post

2 REPLIES 2
OwenAuger
Super User
Super User

Hi @gvg

 

From the tables/relationships you've shown, you should just activate the two relationships simultaneously.

 

The measure should look something like:

 

=
CALCULATE (
    SUM ( Sales[Quantity] ),
    USERELATIONSHIP ( Sales[Product], Subgroup[Product] ),
    USERELATIONSHIP ( Subgroup[SubgroupName], Group[SubgroupName] )
)

 

You can also use the CROSSFILTER function with the same effect:

 

 

=
CALCULATE (
    SUM ( Sales[Quantity] ),
    CROSSFILTER ( Sales[Product], Subgroup[Product], OneWay ),
    CROSSFILTER ( Subgroup[SubgroupName], Group[SubgroupName], OneWay )
)

Owen 🙂


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

Thanks! It works. Except that Groups table name should be in quotes ('Groups') as it probably represents DAX keyword.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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