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
Anonymous
Not applicable

Get the max value of a dimension for each element of a second dimension

Hello,

 

I have a data model that consists of three tables, one fact table, and two dimensions. The dimensions are both joined to the Fact with a one-to-many relationship

 

I have been asked to find the max date from one dimension (Dim A) for each element in my second dimension (Dim B). I think I need to use Calculate here but I'm not sure how.

 

Image of a data model

 

 

Sample data

dahrhughes_0-1644006839867.png

dahrhughes_2-1644006946360.png

dahrhughes_3-1644006955575.png

dahrhughes_4-1644006966460.png

 

Goal results

dahrhughes_1-1644006868886.png

 

1 REPLY 1
lbendlin
Super User
Super User

Your indicated expected results cannot be achieved.  Both dimensions (Category and Date) will be aggregated if combined with facts, so you cannot have two rows of B and only one row of A.

What you will need to do is create a measure that crawls through the data model

 

MaxDate = 
var c = ADDCOLUMNS(VALUES(_FactValues[FactKeyA]),"FA",_FactValues[FactKeyA])
var d = ADDCOLUMNS(c,"MD",CALCULATE(max(_DimDate[Date]),Filter(_DimDate,_DimDate[FactKeyA]=[FA])))
return MAXX(d,[MD])

 

See attached for an implementation

lbendlin_1-1644105990725.png

 

Another alternative is to show the raw data, the dimensions without the facts.

 

lbendlin_0-1644103977385.png

See attached.

 

 

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.