Forum Discussion

ak77's avatar
ak77
Post Patron
1 year ago
Solved

Summarize Total

Hi BI Gurus,

 

i need a help for below..please checj

 

i have a summarize table as below and i need to add and display count for same Extracted Title column.  

Ex: Total Column should be 7 +3=10 as the title is same. 

 

I do not want to change it to MAtrix table.

SummaryMilestone = SUMMARIZE(
    filter(ODATA_LINKS, ODATA_LINKS[SourceType] <> BLANK() ),
   
    ODATA_LINKS[SourceTitle],ODATA_LINKS[ExtractedTitle],
 
    "Total", if(
        CALCULATE(count(ODATA_LINKS[ExtractedTitle]),NOT(ODATA_LINKS[targetState] IN {"Removed","Cancelled"}))=0,0,
            CALCULATE(count(ODATA_LINKS[ExtractedTitle]),NOT(ODATA_LINKS[targetState] IN {"Removed","Cancelled"}))),
))
  • Anonymous's avatar
    Anonymous
    1 year ago

    Hi ak77 ,

    Based on the description, try using the following DAX formula to create a table.

    SummarizedTable = 
    SUMMARIZE(
        ODATA_LINK,
        ODATA_LINK[ExtractedTitle],
        "Total", SUM(ODATA_LINK[Total])
    )

    The summarize table is shown below.

     

    Best Regards,

    Wisdom Wu

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

2 Replies