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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi
How to display values from 'Title' Column whose completed date in last 2 weeks?
Thanks
Kunuthuri
Hi @Anonymous,
Do you mean calculate count of records which completed 2 weeks ago and 'title' similar as current one?
If this is a case, you can try to use below measure:
Count of Previous 2 weeks complete records= VAR currDate = MAX ( Table[Date] ) VAR currTitle = FIRSTNONBLANK ( Table[Title], [Title] ) RETURN COUNTROWS ( FILTER ( ALLSELECTED ( Table ), [Date] <= currDate - 14 && [Work] = "completed" && [Title] = currTitle ) )
If above not help, please share some expected result to help us clarify your requirement.
Regards,
Xiaoxin Sheng
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.