Forum Discussion

geotech's avatar
geotech
Frequent Visitor
5 years ago
Solved

Sum column by group based on another column containing a value

Hello All,   I have the data table below where I would like to sum the revenue by job name if the item number "2222" is present. Job Name Item Number Revenue Project 1 1111  $        50,...
  • parry2k's avatar
    5 years ago

    geotech I will this improved measure

     

    Sum Job 2 = 
    VAR __jobs = CALCULATETABLE ( VALUES ( Job[Job Name] ), Job[Item Number] = "2222"  )
    RETURN
    CALCULATE ( SUM ( Job[Revenue] ), __jobs  ) 

     

    Check my latest blog post Year-2020, Pandemic, Power BI and Beyond to get a summary of my favourite Power BI feature releases in 2020

    I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.