Forum Discussion

pfprado's avatar
pfprado
Frequent Visitor
10 years ago
Solved

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...
  • BhaveshPatel's avatar
    BhaveshPatel
    10 years ago

    AND AT LAST CREATE A FINAL MEASURE

     

    FINALMeasure = CALCULATE([mymeasure],ALL('fact'[Group]))

     

    This will defintely solve your problem.

  • pfprado's avatar
    pfprado
    10 years ago

    Thanks a lot! you really help me