Forum Discussion

chipchidster's avatar
chipchidster
Resolver I
6 years ago
Solved

SUM Distinct for table with duplicate values

I am struggling with an issue that i am sure is easier to solve that I am making it! I'm trying to create a graph showing velocity for each of our software teams.  This is being driven from a summar...
  • v-lid-msft's avatar
    6 years ago

    Hi chipchidster ,

     

    We can try to use the following dax to meet your requirement:

     

    History_sprint_summary =
    SUMMARIZE (
        history,
        history[issue_key],
        history[to_status],
        history[story_points],
        "to_date", MAX ( history[to_date] ),
        "max_sprint_date", MAX ( history[sprint_to_date] )
    )

     


    If it doesn't meet your requirement, kindly share your sample data and expected result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.

     


    Best regards,

     


    Best regards,