Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Querida Comunión,
Estoy tratando de mostrar todos los valores que satisfacen la condición, pero sólo podía ver un solo valor.
Por favor, ayúdame con la fórmula DAX.
A continuación se muestra la fórmula que he probado, pero está mostrando todos los valores que no funcionan en función de la condición
Solved! Go to Solution.
Hola @Charu ,
El filtro de tabla debe configurarse como"Tabla"[Variance%]>0"como la siguiente medida.
Measure =
VAR NOTETXT =
CONCATENATEX (
FILTER ( 'Table', 'Table'[Variance%] > 0 ),
'table'[Category],
" AND "
)
VAR pretext = " Following Category ' "
VAR postcat = " 'achieved target"
RETURN
pretext & NOTETXT & postcat
Aquí está el resultado.
Hola @Charu ,
El filtro de tabla debe configurarse como"Tabla"[Variance%]>0"como la siguiente medida.
Measure =
VAR NOTETXT =
CONCATENATEX (
FILTER ( 'Table', 'Table'[Variance%] > 0 ),
'table'[Category],
" AND "
)
VAR pretext = " Following Category ' "
VAR postcat = " 'achieved target"
RETURN
pretext & NOTETXT & postcat
Aquí está el resultado.
Hola @v-eachen-msft,
Muchas gracias su solución funcionó bien. Gracias una vez más por esta oportuna ayuda 🙂
Difícil saber lo que está pasando, datos de muestra y el resultado esperado ayudaría. Por favor, consulte este post sobre cómo obtener su pregunta respondida rápidamente: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Hola @Greg_Deckler
Edité mi publicación con datos de muestra y el resultado esperado. Espero que esto tenga sentido. Por favor, ayúdame a lograr el resultado esperado.