Forum Discussion

roboskoog's avatar
roboskoog
Frequent Visitor
9 years ago
Solved

Summarizing monthly data

Hello All -   I've been struggling with creating a monthly summary of defects detected.  My table has Project ID, Application ID, Month and Discovered defects.  I need to summarize the discovered d...
  • roboskoog's avatar
    roboskoog
    9 years ago

    Using the suggested posting, I was able to get this to work.  Actual code is:

     

    SUMX(CROSSJOIN(values('Reliability by Appllication (2)'[Appl_ID]),values('Reliability by Appllication (2)'[Reporting Month])),CALCULATE(SUM('Reliability by Appllication (2)'[Discovered Defects])))

     

    I now get a monthly total of defects by application.

     

    Thanks for the suggestion.