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
JimT99
Frequent Visitor

Create Calculated Column using column value as variable in where clause

DAX_CALC.png


I want to create a calculated column in one table (call it TableA) that Calculates a value from another table (TableB) based on column value in TableA

ProdMax = CALCULATE(MAX(TABLEB[Value]) WHERE TABLEA[PRODUCT] = TABLEB[PRODUCT]

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

Try this:

ProdMax =
VAR _Prod = TABLEA[PRODUCT]
RETURN
    CALCULATE ( MAX ( TABLEB[Value] ), TABLEB[PRODUCT] = _Prod )

 

Other variations:

ProdMax =
CALCULATE (
    MAX ( TABLEB[Value] ),
    TABLEB[PRODUCT] = EARLIER ( TABLEA[PRODUCT] )
)
ProdMax =
MAXX (
    FILTER ( TABLEB, TABLEB[PRODUCT] = TABLEA[PRODUCT] ),
    TABLEB[Value]
)

 

View solution in original post

5 REPLIES 5
Power5
Helper IV
Helper IV

I replicated your data. Solution is as follows. Create a relationship between table A and B based on the product field. Then create a measure : 

MAX VALUE = CALCULATE(MAX('Table B'[Value])). After create a table with the MAX Value measure, and product field from TABLE A.
 
Power5_1-1700001140530.png

 

Power5_0-1700001055366.png

 

AlexisOlson
Super User
Super User

Try this:

ProdMax =
VAR _Prod = TABLEA[PRODUCT]
RETURN
    CALCULATE ( MAX ( TABLEB[Value] ), TABLEB[PRODUCT] = _Prod )

 

Other variations:

ProdMax =
CALCULATE (
    MAX ( TABLEB[Value] ),
    TABLEB[PRODUCT] = EARLIER ( TABLEA[PRODUCT] )
)
ProdMax =
MAXX (
    FILTER ( TABLEB, TABLEB[PRODUCT] = TABLEA[PRODUCT] ),
    TABLEB[Value]
)

 

Why does  STDEV.P not workin place of MAX

Prodstd =
CALCULATE (
    STDEV.P ( Query1_TSP[Value] ),
    Query1_TSP[Att_BatchDesc] = EARLIER ( SPECS_BATCHDESC_ATTRIBUTE[Att_BatchDesc] ))

I tried your 2nd suggestion and it worked.  Thank YOU!!

You need to create a relationship between the two tables. In my response you can see how it is achieved. @AlexisOlson  measures work great but you need to get the relationship down for it all to be tied in together.

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.