Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
naizam
Helper II
Helper II

Mostrar valores predeterminados en Table visual

Hola expertos,

Buscando una solución/trabajar alrededor de un problema que me encontré con. Tengo un tablero con 4 iconos(la tabla visual se muestra para que parezca una tarjeta)en la fila superior. Estos mosaicos muestran el recuento de 4 estados diferentes. Otro objeto visual de tabla que se muestra en la parte inferior que muestra todo de forma predeterminada. El usuario puede hacer clic en cualquier recuento de estado en la parte superior y el objeto visual inferior se filtrará para mostrar solo el estado seleccionado.

Lo que estoy tratando de lograr es mostrar sólo el estado activo en la tabla inferior de forma predeterminada. El usuario debe tener la capacidad de seleccionar cualquier otro estado haciendo clic en el recuento de staus superior, así. ¿Hay alguna manera de hacer esto? Sample Muestra

Gracias

Naizam

3 REPLIES 3
v-alq-msft
Community Support
Community Support

Hola, @naizam

Si usted toma la respuesta de alguien, por favor márquela como la solución para ayudar a los otros miembros que tienen los mismos problemas a encontrarla más rápidamente. Si no, avísame y trataré de ayudarte más. Gracias.

Saludos

Allan

Hola @v-alq-msft ,

Gracias por la solución, gracias. Aún no he tenido la oportunidad de probar esto. Actualizaré el resultado en los próximos días.

Gracias

Naizam

v-alq-msft
Community Support
Community Support

Hola, @naizam

Según su descripción, creé datos para reproducir su escenario. El archivo pbix se adjunta al final.

e1.png

Puede crear medidas como se indica a continuación.

Top Active = 
COALESCE(
    CALCULATE(
        DISTINCTCOUNT('Table'[ID]),
        FILTER(
            ALLSELECTED('Table'),
            [Status]="Active"
        )
    ),0
)
Top Retired = 
COALESCE(
    CALCULATE(
        DISTINCTCOUNT('Table'[ID]),
        FILTER(
        ALLSELECTED('Table'),
        [Status]="Retired"
        )
    ),0
)
Top On Hold = 
COALESCE(
    CALCULATE(
        DISTINCTCOUNT('Table'[ID]),
        FILTER(
        ALLSELECTED('Table'),
        [Status]="On Hold"
        )
    ),0
)
Top Migrated to AWS = 
COALESCE(
    CALCULATE(
        DISTINCTCOUNT('Table'[ID]),
        FILTER(
        ALLSELECTED('Table'),
        [Status]="Migrated to AWS"
        )
    ),0
)
Bottom Active = 
COALESCE(
    CALCULATE(
        DISTINCTCOUNT('Table'[ID]),
        FILTER(
        ALL('Table'),
        [Status]="Active"
        )
    ),0
)
Bottom Retired = 
COALESCE(
    CALCULATE(
        DISTINCTCOUNT('Table'[ID]),
        FILTER(
        ALL('Table'),
        [Status]="Retired"
        )
    ),0
)
Bottom On Hold = 
COALESCE(
    CALCULATE(
        DISTINCTCOUNT('Table'[ID]),
        FILTER(
        ALL('Table'),
        [Status]="On Hold"
        )
    ),0
)
Bottom Migrated to AWs = 
COALESCE(
    CALCULATE(
        DISTINCTCOUNT('Table'[ID]),
        FILTER(
        ALL('Table'),
        [Status]="Migrated to AWS"
        )
    ),0
)

Resultado:

e2.png

Si malinterpreta sus pensamientos, por favor muéstrenos algunos datos de muestra y el resultado esperado. Gracias.

Saludos

Allan

Si este post ayuda, entonces considera Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.

Top Kudoed Authors