Forum Discussion
vijaykumarj19
Microsoft Employee
4 years agoShow measure total based on filter
Dataset: My measure(M_C3-C2) total should display 11 in card but it is displaying 80 measure: M_C2-C3 = var a = SUM('Table'[c3]) - SUM('Table'[c2]) return IF(SUM('Table'[c2])=BLANK(),B...
- 4 years ago
M_c3-c2 : =
SUMX ( FILTER ( 'Table', 'Table'[c2] <> BLANK () ), 'Table'[c3] - 'Table'[c2] )
Jihwan_Kim
Super User
4 years ago
M_c3-c2 : =
SUMX ( FILTER ( 'Table', 'Table'[c2] <> BLANK () ), 'Table'[c3] - 'Table'[c2] )