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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Estoy creando un diagrama de gant usando una matriz, porque necesito una cierta personalización...
Estoy tratando de encontrar una solución para cuando los eventos tienen una fecha de inicio y finalización el mismo día, es decir, cuando son conflictivos.
Pensé en crear un ranking de los eventos que son más importantes.
En mi caso, si tuviera que crear un rango basado en la función switch (código a continuación), se vería así, en orden de importancia:
Primero: 1.8 12.11
Segundo: 2, 3, 10
Tercera:6
Habitación:3
Quinto:5,9,13
Hoy uso la personalización condicional para llenar las celdas con colores
¿Es esta la mejor idea? ¿Hay algo mejor y cómo puedo hacerlo?
Mi código:
Periodo =
var _startDate =
CALCULATE(
MIN('TBL_DISPONIBILIDADE_FROTA_AEREA'[MARCO_INICIAL]),
ALL(CUSTOM_CALENDARIO)
)
var _endDate =
CALCULATE(
MAX('TBL_DISPONIBILIDADE_FROTA_AEREA'[MARCO_FINAL]),
ALL(CUSTOM_CALENDARIO)
)
var _period =
MIN(CUSTOM_CALENDARIO[Data])>= _startDate
&& MAX(CUSTOM_CALENDARIO[Data]) <= _endDate
var _status =
CALCULATE(
MAX(TBL_DISPONIBILIDADE_FROTA_AEREA[STATUS]),
ALL(CUSTOM_CALENDARIO)
)
RETURN
SWITCH(
TRUE()
,_period && _status = "INDISPONÍVEL",1
,_period && _status = "PREVISTO",2
,_period && _status = "PRONTO COMUNICADO",3
,_period && _status = "PRONTO NÃO VALIDADO",4
,_period && _status = "ENCERRADO",5
,_period && _status = "FRANQUIA SOLICITADA",6
,_period && _status = "FRANQUIA AUTORIZADA",7
,_period && _status = "FRANQUIA EM CURSO",8
,_period && _status = "FRANQUIA ENCERRADA",9
,_period && _status = "ACC AGENDADO",10
,_period && _status = "ACC EM CURSO",11
,_period && _status = "ACC ENCERRADO",12
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.