Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
Hola 😄
Quiero mejorar la experiencia del usuario de mi informe, así que me preguntaba si hay alguna manera de lidiar con este tipo de situación:
Tengo una tabla unida a la izquierda, una columna llamada 'temporadas' por ejemplo, tiene ['Blank','Summer','Winter','Fall','Spring'].
Necesito que siempre un usuario seleccione una temporada (Verano,'Invierno', 'Otoño', 'Primavera) también incluya las 'Blank'.
Sé que se resuelve simplemente seleccionando ambas opciones, pero quiero que los usuarios no saben que, si seleccionan Verano e Invierno por ejemplo, la opción 'En blanco' también se seleccionará automáticamente de alguna manera.
¡¡Gracias!!
Solved! Go to Solution.
Hola @alejandro7bf ,
Por favor, intente así:
Seasons = VALUES('Table'[Seasons])
Measure =
IF (
SELECTEDVALUE ( 'Table'[Seasons] ) IN ALLSELECTED ( Seasons[Seasons] )
|| SELECTEDVALUE ( 'Table'[Seasons] ) = BLANK (),
1,
0
)
Para obtener más información, consulte el archivo adjunto.
Hola @alejandro7bf ,
Por favor, intente así:
Seasons = VALUES('Table'[Seasons])
Measure =
IF (
SELECTEDVALUE ( 'Table'[Seasons] ) IN ALLSELECTED ( Seasons[Seasons] )
|| SELECTEDVALUE ( 'Table'[Seasons] ) = BLANK (),
1,
0
)
Para obtener más información, consulte el archivo adjunto.
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Check out the November 2024 Power BI update to learn about new features.