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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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!:
The Definitive Guide to Power Query (M)

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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Top Kudoed Authors