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!View all the Fabric Data Days sessions on demand. View schedule
Hi, so in my dimension table, I have an ID which does not exist to a connected fact table, thus showing blank to a matrix visual. Is there a way to use the overall value calculated by a measure for blank rows?
Blank rows
fill those blank columns with the overall value:
Solved! Go to Solution.
hi @HCBD13 ,
try like:
new measure =
COALESCE(
[revenue%],
CALCULATE(
[revenue%],
ALL(dimtable[ID])
)
)
Thanks for the reply from FreemanZ, please allow me to provide another insight.
Hi @HCBD13 ,
Please try the following measure.
Measure = IF(
SUM(FactTable[Revenue%])=BLANK(),
CALCULATE(SUM(FactTable[Revenue%]),ALL(DimID[ID])),
SUM(FactTable[Revenue%])
)
Please see the attached pbix for reference.
Best Regards,
Dengliang Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for the reply from FreemanZ, please allow me to provide another insight.
Hi @HCBD13 ,
Please try the following measure.
Measure = IF(
SUM(FactTable[Revenue%])=BLANK(),
CALCULATE(SUM(FactTable[Revenue%]),ALL(DimID[ID])),
SUM(FactTable[Revenue%])
)
Please see the attached pbix for reference.
Best Regards,
Dengliang Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi @HCBD13 ,
try like:
new measure =
COALESCE(
[revenue%],
CALCULATE(
[revenue%],
ALL(dimtable[ID])
)
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!