Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Igotzepowerbi
Frequent Visitor

Need Inventory SUM for the last day with data of each Month

Hi,
I am needing a measure that grabs the last day of the month where there is data and just give me the inventory units for that day.
So I was able to do this with a matrix but I only want the rows highlighted.
Could someone help me? 

Igotzepowerbi_0-1696370793481.png

Igotzepowerbi_1-1696370819715.png

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@Igotzepowerbi You could create a complex selector like the following:

Selector Measure = 
  VAR __Year = MAX('Table'[Year])
  VAR __Month = MAX('Table'[Month])
  VAR __Date = MAX('Table'[Date])
  VAR __MaxDate = MAXX( DISTINCT( SELECTCOLUMNS( FILTER(ALLSELECTED('Table'), [Year] = __Year && [Month] = __Month), "Date", [Date]) ), [Date])
  VAR __Result = IF(__Date = __MaxDate, 1, 0)
RETURN
  __Result

You could also create a measure with similar logic that only returns a value if it is the max date.

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Super User
Super User

@Igotzepowerbi You could create a complex selector like the following:

Selector Measure = 
  VAR __Year = MAX('Table'[Year])
  VAR __Month = MAX('Table'[Month])
  VAR __Date = MAX('Table'[Date])
  VAR __MaxDate = MAXX( DISTINCT( SELECTCOLUMNS( FILTER(ALLSELECTED('Table'), [Year] = __Year && [Month] = __Month), "Date", [Date]) ), [Date])
  VAR __Result = IF(__Date = __MaxDate, 1, 0)
RETURN
  __Result

You could also create a measure with similar logic that only returns a value if it is the max date.

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.