Forum Discussion
Saurabh129
2 years agoFrequent Visitor
Help needed with DAX measure - Quick
Looking for help with DAX I have a measure [Homes Completed] which calculates the number of homes completed by the completion date dim_date table is connected to the completion date I have a d...
Anonymous
2 years agoNot applicable
Hi, Saurabh129
Thanks for the reply from amitchandak , please allow me to provide another insight:
Maybe you can create a new measure and try the following dax:
Homes Completed Before End Date =
CALCULATE(
[Homes Completed],
FILTER(
ALL(dim_date[Date]),
dim_date[Date] <= MAX(dim_date[Date])
)
)
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.