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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
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])
)
)