Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hola
Necesito mostrar la edad seleccionada en mi informe. He probado estas 2 opciones, sin embargo, esto siempre muestra solo los valores mínimos y máximos de la tabla. Entonces, por ejemplo, cuando selecciono la edad de 14 a 24 años y aplico muchos otros filtros, estos números cambiarán al elegir el valor mi y max de la tabla, en lugar de mostrar lo que el usuario eligió en el filtro.
Solved! Go to Solution.
Me las arreglé para resolverlo yo mismo 🙂
VAR MinAge = CALCULATE( MIN('Table'[Age]), ALLSELECTED('Table') ) VAR MaxAge = CALCULATE( MAX('Table'[Age]), ALLSELECTED('Table') ) RETURN IF( ISFILTERED('Table'[Age]), "| Age: " & MinAge & " - " & MaxAge, BLANK() )
Me las arreglé para resolverlo yo mismo 🙂
VAR MinAge = CALCULATE( MIN('Table'[Age]), ALLSELECTED('Table') ) VAR MaxAge = CALCULATE( MAX('Table'[Age]), ALLSELECTED('Table') ) RETURN IF( ISFILTERED('Table'[Age]), "| Age: " & MinAge & " - " & MaxAge, BLANK() )
Hola @WOLFIE,
¿Podrías compartir un simple pbix con alguna fecha para que pueda echarle un vistazo?
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.