Forum Discussion
jakaihammuda
Helper III
2 years agoSum 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...
- 2 years ago
hi, jakaihammuda
try belowresult = 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.
Dangar332
Resident Rockstar
2 years agoHi, jakaihammuda
try below
result =
sumx(
filter(
all('tablename'),
'tablename'[process column]<>"master"
),
[process run time]
)- jakaihammuda2 years ago
Helper III
Thank you for this! seems to have worked a treat 🙂
one more questyion, if i want to filter so its not "master" and also not "validation" how would i encorporate this into the DAX?
- Dangar3322 years ago
Resident Rockstar
hi, jakaihammuda
try belowresult = 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.
- jakaihammuda2 years ago
Helper III
Amazing thank you so much for this 😁