Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 75 | |
| 36 | |
| 31 | |
| 29 | |
| 26 |