Forum Discussion

KM007's avatar
KM007
Helper II
8 years ago
Solved

Select Start Price from Earliest Date

Hi   Please see attached photo.   I want to create a new Column that contains the Start Price for each of the Funds Please may you let me know how to do this Thanks!
  • Zubair_Muhammad's avatar
    8 years ago

     KM007

     

    Try this Calculated Column using DAX

     

    Start Price =
    CALCULATE (
        FIRSTNONBLANK ( TableName[Price], 1 ),
        FILTER ( ALLEXCEPT ( TableName, TableName[Fund Name] ), TableName[Index] = 1 )
    )