Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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?
Solved! Go to Solution.
@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.
@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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
19 | |
14 | |
14 | |
11 | |
9 |