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
Jerid421
Helper II
Helper II

Return Max Value on One Side of Relationship

I am trying to populate a calculated column on the one side (dimState) of a relationship with the MAX() of all the values associated to those records on the many side (factJobOpenings) of the relationship.  

 

I have this so far but it is returning the MAX of ALL the values in the fact table column ([AvgStatePlacementDays], not for each of the States:

20YrAvgDaystoPlace = CALCULATE(MAX(factJobOpenings[AvgStatePlacementDays]), FILTER(factJobOpenings,factJobOpenings[StateID] = RELATED(dimState[StateID])))
 
 
1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

@Jerid421 if the calculated column is in DimState table,try this

MAXX(RELATEDTABLE(factJobOpenings),factJobOpenings[AvgStatePlacementDays])

View solution in original post

4 REPLIES 4
wdx223_Daniel
Super User
Super User

@Jerid421 if the calculated column is in DimState table,try this

MAXX(RELATEDTABLE(factJobOpenings),factJobOpenings[AvgStatePlacementDays])

This worked perfectly.  I tried MAXX() (becuase I thought I needed and iterator) but I must not have used it correctly.  Thanks!

AlB
Super User
Super User

Hi @Jerid421 

I'm not sure what you are trying to do with the RELATED( ). Try:

0YrAvgDaystoPlace = CALCULATE( MAX( factJobOpenings[AvgStatePlacementDays] ) )

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

I changed the title of the post as it incorrectly said "Many" instead of "One".  That might explain what I'm trying yo do with the Related() function.  Sorry!

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