Forum Discussion
alavanka
3 years agoHelper I
Update table using slicers
Hello all! is it possible to change values in a table using slicers? For example I have a table in my report that I created manually and represents the weight of each feature in my calculatio...
DimaMD
3 years agoSolution Sage
alavanka If you want to see the total, then you need the next measure
Міра 2 =
IF( HASONEVALUE('Table'[Feature]),
[Міра],
SUMX( VALUES('Table'[Feature]),
[Міра]))
alavanka
3 years agoHelper I
Sorry. I was not clear. I need an independent slicer for each feature / row.
I just tried for Feature 1 (1st row) assuming that I could replicate the same for the others.