Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext 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
hi @fbittencourt ,
Glad the last version helped a bit! I think the key with Power BI formatting and blanks is to be really explicit with how you handle them, since visuals will ignore BLANK() and just show default formatting.
Try this version for your measure, it's a bit cleaner and should skip formatting whenever there’s missing data, plus it keeps your color logic clear:
VAR MEP_Planifie = MAX(REF_PROJET[MEP Date])
VAR colorMEP =
IF(
ISBLANK(MEP_Planifie),
BLANK(),
IF(MEP_Planifie < [Date_jourM-1], "#E66C37", "#000000")
)
VAR colorProgress =
IF(
ISBLANK([% Avancement projet]),
BLANK(),
IF([% Avancement projet] > 0.9, "#E66C37", "#000000")
)
RETURN
SWITCH(
TRUE(),
// Skip formatting if either color is blank
ISBLANK(colorMEP) || ISBLANK(colorProgress), BLANK(),
// Both conditions orange = blue
colorMEP = "#E66C37" && colorProgress = "#E66C37", "#0000FF",
// Otherwise use main color
NOT(ISBLANK(colorMEP)), colorMEP,
NOT(ISBLANK(colorProgress)), colorProgress,
"#000000"
)
By checking ISBLANK up front, Power BI will just leave the cell with default formatting if there’s no data, which is usually what you want. Multiple Conditions: If both conditions are met, you’ll get blue; otherwise, your normal rules apply. Still Not Working? Sometimes “blank” in Power BI is actually an empty string or a hidden value, so double-check your source fields if it’s still acting weird (using LEN or TRIM can help diagnose).
Thanks for you quick answer, I have applied your code it looks good concerning the blank values, but I do not know for what reason the issue remains.
Maybe if we change the mesure it works
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 31 | |
| 23 |