Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 33 | |
| 31 | |
| 19 | |
| 12 | |
| 11 |