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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Syndicate_Admin
Administrator
Administrator

¿Cómo dar formato condicional a Matrix con barras de datos o colores de fondo para la tendencia temporal?

¿Cómo dar formato condicional a Matrix con barras de datos o colores de fondo para tendencias de tiempo?

Por ejemplo, la siguiente imagen muestra las ventas de bicicletas durante 4 años. Es necesario tener barras de datos de color / colores de fondo para ver la tendencia, ya sea que aumente o disminuya en función de la cantidad de ventas de cada año.

MATRIX-CONDITIONAL FORMATTING--QUERY.png

2 REPLIES 2
Syndicate_Admin
Administrator
Administrator

@Manas ,

Aditya_Meshram_1-1660048110463.png

¿Es así como lo quieres?
Puede utilizar esta medida para el formato condicional del color de celda

Cell Color = 
var a = SUM('Table'[Value])
var b = CALCULATE(SUM('Table'[Value]),SAMEPERIODLASTYEAR('Calendar'[Date]))
return
   IF(
       a>b,"#b3ffd9",IF(ISBLANK(a) || ISBLANK(b),"#ffffff","#ffb3b3")
   )


Se adjunta .pbix como referencia.
Manas.pbix

Saludos
Aditya

Syndicate_Admin
Administrator
Administrator

@Manas , Crear una medida INTERANUAL, Preferir usar una tabla de fecha / año separada

Solo año vs año, no un nivel por debajo

Este año = CALCULATE(sum('Table'[Qty]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])))
Último año = CALCULATE(sum('Table'[Qty]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])-1))
diff = [Este año]-[Último año]
diff % = divide([Este año]-[Último año],[Último año ])

Utilice este diff en formato condicional , regla

o bien, cree una medida de color y utilícela en formato condicional mediante el valor de campo

color = if([diff]>0, "Verde", "rojo")

¿Cómo hacer formato condicional por medida y aplicarlo en el pastel?
https://www.youtube.com/watch?v=RqBb5eBf_I4&list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L
https://community.powerbi.com/t5/Community-Blog/Power-BI-Conditional-formatting-the-Pie-Visual/ba-p/...

https://amitchandak.medium.com/power-bi-where-is-the-conditional-formatting-option-in-new-format-pan...

Helpful resources

Announcements
ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors
Top Kudoed Authors