Forum Discussion

drrai66's avatar
drrai66
Icon for Resolver I rankResolver I
8 years ago
Solved

How can I get Minimum Date For each ID and Status

Hi All, I would like to get the Minimum Date for Each ID and Status, So I should be getting the  Values in COLUMN (MIN Date) in following example. What is the formula to get that. Thanks Deepak  ...
  • Zubair_Muhammad's avatar
    8 years ago

    drrai66

     

    Try this

     

    =
    CALCULATE (
        MIN ( Table1[Changed Date] ),
        ALLEXCEPT ( Table1, Table1[ID], Table1[Status] )
    )