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
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 |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 11 | |
| 9 | |
| 9 | |
| 8 |