Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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?
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.