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
ROG
Responsive Resident
Responsive Resident

Dax measures help need

Hi all,

 

I posted a question here this morning but I didn't get the full solution, so I thought I would post here where I got stuck at. 

I want to add a new column saying 'Customer type change?' = "1" if the product is different bettween the columns (First_CustType and CurrentCustType) and "0" if they have the same product.

 

ROG_1-1659451886260.png

 

A super user friend adviced me using the below.

Column = IF([First_Product] = [CurrentProduct],0,1)

 

For the highlighted below, do they need to be a measure?  The columns from my table are just fields from different tables (Cust_ID and First_CustType come from the table ProductAcquisition, and CurrentCustType comes from the table CustomerType. I tried to create both measures so I can create the measure below but it's not working. Se below the error I get. 

ROG_2-1659452123938.png

ROG_4-1659452430413.png

 

 

How can I get this done? 

Thank you.

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

Hi @ROG ,

Please try below options:

My test table:

ProductAcquisition:

vbinbinyumsft_0-1659935543795.png

CustomerType:

vbinbinyumsft_1-1659935555866.png

Model:

vbinbinyumsft_2-1659935571439.png

 

Try below DAX to add new column in table ProductAcquisition:

CurrentCustType_FromCT = RELATED(CustomerType[CurrentCustType])
Column = if([First_CustType]= [CurrentCustType_FromCT],1,0)

vbinbinyumsft_3-1659936041993.png

 

Best regards,

Community Support Team_ Binbin Yu

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-binbinyu-msft
Community Support
Community Support

Hi @ROG ,

Please try below options:

My test table:

ProductAcquisition:

vbinbinyumsft_0-1659935543795.png

CustomerType:

vbinbinyumsft_1-1659935555866.png

Model:

vbinbinyumsft_2-1659935571439.png

 

Try below DAX to add new column in table ProductAcquisition:

CurrentCustType_FromCT = RELATED(CustomerType[CurrentCustType])
Column = if([First_CustType]= [CurrentCustType_FromCT],1,0)

vbinbinyumsft_3-1659936041993.png

 

Best regards,

Community Support Team_ Binbin Yu

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

Barthel
Solution Sage
Solution Sage

Hey,

 

In measures you cannot directly refer to columns, because there is no row context. Your matrix contains the columns, so based on the filter context per row there is only one value for the columns. We can retrieve this single value using the SELECTEDVALUE function. Use this code for your measure:

 

 

 

Measure =
INT (
    SELECTEDVALUE ( ProductAcquisition[First_Product] )
        = SELECTEDVALUE ( ProductAcquisition[Current_Product] )
)

 

 

 

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.

Top Solution Authors