Forum Discussion

jakaihammuda's avatar
jakaihammuda
Icon for Helper III rankHelper III
2 years ago
Solved

Sum Measure outputs into a card visual

Hi,   Im having some issues calculating the sum of row totals, the totals provided are calculated from another measure themselves.    the column i want to calculate the total sum of is this - and...
  • Dangar332's avatar
    Dangar332
    2 years ago

    hi, jakaihammuda 

    try below

     

    result =
     sumx(
       filter(
          all('tablename'),
          'tablename'[process column]<>"master" && 'tablename'[process column]<>"validation"
    
        ),
        [process run time]
      )

     

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