Forum Discussion
pfprado
10 years agoFrequent Visitor
How to get minimum value from range date in DAX
I need to get a calculated measure of the minimum date of a range of values, ie I have a fact table with a date and two measures. When I filter by range date, I need to get the second measure of the...
- 10 years ago
AND AT LAST CREATE A FINAL MEASURE
FINALMeasure = CALCULATE([mymeasure],ALL('fact'[Group]))
This will defintely solve your problem.
- 10 years ago
Thanks a lot! you really help me
BhaveshPatel
10 years agoSuper User
AND AT LAST CREATE A FINAL MEASURE
FINALMeasure = CALCULATE([mymeasure],ALL('fact'[Group]))
This will defintely solve your problem.
pfprado
10 years agoFrequent Visitor
Thanks a lot! you really help me