Forum Discussion
Return single date
Hello,
Sorry I'm new to Power BI. But within a measure I'm looking for return just single date. But this date needs to be the newest day minus 3. For example:
last date on the dataset 20/03/2021 and I want it to return 17/03/2021.
This is what I've tried so far but it returns multiple dates:
- Anonymous5 years ago
Hi Anonymous ,
You can use the ALL function to remove all filters and return a single date.
Measure = CALCULATE(MAX('Calendar'[Date])-3,ALL('Calendar'))Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
3 Replies
- amitchandakSuper User
Anonymous , A measure or measure var
maxx(ALLSELECTED('Calendar'),'Calendar'[Date]) -3
- HarishKMSuper User
Anonymous Hey Bruh ,
You can take inspriration from my calculation .latest date = CALCULATE(MAX(data[Order Date]),DATEADD(data[Order Date],-3,DAY)) - AnonymousNot applicable
Hi Anonymous ,
You can use the ALL function to remove all filters and return a single date.
Measure = CALCULATE(MAX('Calendar'[Date])-3,ALL('Calendar'))Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.