Forum Discussion
BiBra
8 years agoHelper III
data appear only when selected
Hello I have dummy data: name value ff dfg ss ytr I am making graphs and matrix'es. A slicer is to c...
sdjensen
8 years agoSolution Sage
You could try a measure like this - it will only return a value if name has one value in the context where the measure is shown.
Measure =
IF(
HASONEVALUE( Tabel1[Name] ),
SUM( Tabel1[Value] )
)