Forum Discussion
Anonymous
6 years agoNot applicable
DAX Help
Hi, Can someone help me with dax. I created 2 measures that take the start date & end Date of the slicer. StartDate = calculate(min(datetable[date]),allselected(datetable[date])) EndDate = cal...
Anonymous
6 years agoNot applicable
Hi parry2k ,
Thanks for replying.
I have tried the measure but still didn't got the solution.For the max GracePeriodEndDate getting the solution.
parry2k
6 years agoSuper User
Anonymous sorry I missed the relationship , try this measure
Expired_Measure =
VAR __m = MAX('Card Type'[GracePeriodEndDate])
RETURN IF ( [End Date] > __m , 1, 0 ) * DIVIDE (__m, __m)
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
- Anonymous6 years agoNot applicable
parry2k I tried this measure but still didn't got the solution.I really appreciate your efforts.Thankyou