I have a PowerBI Dashboard.
Table1
Unit Value
U1 20
U2 60
I have a filter on Unit = U1
I have a measure that sums up the value field.
MySum = sum('Table1'[value])
If I put the result in a panel I get: 20
If I create a derived table:
Table2 = { sum('Table1'[value]) }
and then put the result in a panel I get: 80
Why doesn't the second calc honour the filter?