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!View all the Fabric Data Days sessions on demand. View schedule
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!