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
CarlsBerg999
Helper V
Helper V

Create a DAX relationship

Hi,

 

I have a situation where i have two tables: Category and Products. I want to combine these to a visual. However, this would require a relationship that links Product 1,2,3,4 to "Products" category. I could just create a calculated column for this, but that would be redundant. 

Can i create this relationship with DAX? How?

CarlsBerg999_0-1617890987279.png

 

1 ACCEPTED SOLUTION
v-yuaj-msft
Community Support
Community Support

Hi @CarlsBerg999 ,

 

Based on your description, I create a measure as follows.

test = 

SUMX(FILTER(ALL('Products'),LEFT(MAX('Products'[Products]),3)=LEFT(SELECTEDVALUE('Categories'[Categories]),3)),[Price])

Result:

v-yuaj-msft_0-1618197225166.png

Hope that's what you were looking for.

Best Regards,

Yuna

 

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

4 REPLIES 4
v-yuaj-msft
Community Support
Community Support

Hi @CarlsBerg999 ,

 

Based on your description, I create a measure as follows.

test = 

SUMX(FILTER(ALL('Products'),LEFT(MAX('Products'[Products]),3)=LEFT(SELECTEDVALUE('Categories'[Categories]),3)),[Price])

Result:

v-yuaj-msft_0-1618197225166.png

Hope that's what you were looking for.

Best Regards,

Yuna

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

sanalytics
Solution Supplier
Solution Supplier

 

@CarlsBerg999 

 

The ideal step will be create a Key column then make a relationship by virtual or physical..

 

if you dont want to create any column then  simple Switch or if statement also will help you to acheive this

 

Attached is the .pbis file for your reference

 

https://dropfiles.org/Z5M3DH7C

 

Hope it will help

 

Regards

sanalytics

 

amitchandak
Super User
Super User

@CarlsBerg999 , Created a calculated column is an idea going to work here. Is the service also have data coming from another table?

Yes, I would like to avoid making calculated columns. Isn't there a way to create this relationship with a measure? 

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.