Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi Experts
I am trying to not show blank in my table (column QTY refunded) but replace those blanks with 0. See image below.
See Product Brooke should read 13 and 0 in the QTY Refunded Column not blank.
My measure is
Solved! Go to Solution.
@Anonymous,
Try this measure:
QTY Refunded =
VAR vCount =
COUNTA ( 'its_metapack_received_returns'[returnoption] )
VAR vResult =
IF ( ISBLANK ( vCount ), 0, vCount )
RETURN
vResult
Proud to be a Super User!
@Anonymous,
Try this measure:
QTY Refunded =
VAR vCount =
COUNTA ( 'its_metapack_received_returns'[returnoption] )
VAR vResult =
IF ( ISBLANK ( vCount ), 0, vCount )
RETURN
vResult
Proud to be a Super User!
Many Thanks,
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.