Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I am struggling to show the latest value from the slicer in a table. Here is my formula, which works fine if I have a card.
Display Value =
VAR _month =
MAX ( 'Wage Inflation DATE'[YearMonth] )
RETURN
CALCULATE (
SELECTEDVALUE ( 'Wage Inflation DATE'[YearMonth] ),
( 'Wage Inflation DATE'[YearMonth] = _month )
)
But I want to show in the table as the latest value selected. so instead of 202207, I want to see 202209.
PBIX: https://drive.google.com/file/d/1U3ztyzqCtP1JuM8G3bRqhJNZBfPFz4Vo/view?usp=share_link
Thanks in advance,
EZ
Solved! Go to Solution.
Hi,
I just changed the cross filter direction to single. See image.
'thanks. Both the solutions work.
You are welcome.
Hi,
I just changed the cross filter direction to single. See image.
@RK_JOB , You need to create a new measure and use that in the visual or visual level filter
Display Value =
VAR _month =
MAXX (allselected('Wage Inflation DATE'), 'Wage Inflation DATE'[YearMonth] )
RETURN
CALCULATE (
Count ( 'Wage Inflation DATE'[YearMonth] ),
filter('Wage Inflation DATE', 'Wage Inflation DATE'[YearMonth] = _month )
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 50 | |
| 44 |