Forum Discussion

yve214's avatar
yve214
Icon for Helper III rankHelper III
4 years ago
Solved

Most Recent Discharge Date Row Record

Please how can I get the most recent row values if I have a sample data like this. 

 

I used the calculate and filter allexcept function but I got only the dates and not the corresponding Ids. 

Table:

patient_namepatient_Iddischarge_daterecord_Id
Mark13/15/20191001
John26/3/20201002
Tom38/7/20201003
Tom39/1/20201004
Tom39/3/20201005
Sarah42/1/20181006
Kim57/6/20171007
Mark14/7/20201008
Tom311/1/20201009
Steve63/2/20191010

 

Expected Results:

patient_namepatient_Iddischarge_daterecord_Id
John26/3/20201002
Sarah42/1/20181006
Kim57/6/20171007
Mark14/7/20201008
Tom311/1/20201009
Steve63/2/20191010

 

Thank you so much.

  • Hi,

    I assume you want to create a measure.

    Please check the below picture and the attached pbix file.

     

    Date record ID max date: =
    IF (
        HASONEVALUE ( Data[patient_name] ),
        CALCULATE (
            MAX ( Data[record_Id] ),
            FILTER ( Data, Data[discharge_date] = [Discharge max date:] )
        )
    )
    

3 Replies

  • Hi,

    I assume you want to create a measure.

    Please check the below picture and the attached pbix file.

     

    Date record ID max date: =
    IF (
        HASONEVALUE ( Data[patient_name] ),
        CALCULATE (
            MAX ( Data[record_Id] ),
            FILTER ( Data, Data[discharge_date] = [Discharge max date:] )
        )
    )
    
    • yve214's avatar
      yve214
      Icon for Helper III rankHelper III

      Thank you for your help. Sorry I thought I accepted this solution. Thank you again.

  • Hi yve214 ,

     

    Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or if you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.

     

    Refer to:

    How to provide sample data in the Power BI Forum

    How to Get Your Question Answered Quickly

     

    Best Regards,

    Jianbo Li

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.