Forum Discussion
Anonymous
4 years agoNot applicable
Measurement with Filtering TEXT
How can I create a measure that filters the highest professional (professional 4) and places it on a card, that is, a measure that gives me the name of the boss (professional 4) of the TEAM (DESCRIPT...
SpartaBI
Community Champion
4 years agoAnonymous you mean like this?
Jefe del Equipo =
CALCULATE(
SELECTEDVALUE(Datos[Nombre]),
Datos[DESCRIPTIOPN DEL CARGO] = "Profesional 4"
)