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 All,
Hope everyone is doing well.
I need some more help with a formula please 🙂
Find the # of Days between Start Date and First Open Time with the criteria of:
1. Answer = Accept
2. Status <> Void
3. First Open Time after Start Date
Solved! Go to Solution.
@Anonymous Maybe:
Measure =
VAR __Name = MAX('Table'[Name]
VAR __Start = MAX('Table'[Start Date])
VAR __OpenTime = MINX(FILTER(ALL('Table'), [Name] = __Name && [Status] = "Active" && [Open Time] > __Start), [Open Time])
VAR __Result = ( __OpenTime - __Start ) * 1.
RETURN
__Result
@Anonymous Maybe:
Measure =
VAR __Name = MAX('Table'[Name]
VAR __Start = MAX('Table'[Start Date])
VAR __OpenTime = MINX(FILTER(ALL('Table'), [Name] = __Name && [Status] = "Active" && [Open Time] > __Start), [Open Time])
VAR __Result = ( __OpenTime - __Start ) * 1.
RETURN
__Result
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 |
|---|---|
| 9 | |
| 4 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 8 | |
| 8 | |
| 7 |