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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have physical date and workflow status. I am needing the latest "physical date" to todays date with the workflow status not including "received pricing".
How many days between the max "physical date" to todays date not including the workflow status "received pricing."
Please advise. Thank you!
Solved! Go to Solution.
hi, @kballar1
try below
measure =
var a = maxx(
filter(
tablename,
tablename[workflow status]<>"received pricing"
),
tablename[physiacal date]
)
return
datediff(a,today(),day)
hi, @kballar1
try below
measure =
var a = maxx(
filter(
tablename,
tablename[workflow status]<>"received pricing"
),
tablename[physiacal date]
)
return
datediff(a,today(),day)
This worked! Thank you!
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
19 | |
15 | |
7 | |
6 |