Forum Discussion
kballar1
2 years agoHelper I
MAX Date with Filters
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!
hi, kballar1
try belowmeasure = var a = maxx( filter( tablename, tablename[workflow status]<>"received pricing" ), tablename[physiacal date] ) return datediff(a,today(),day)