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 I have measure, and its results are being displayed in the card visual.
If i get a negative number i want to be able to show it as a zero? how can i do that.
Regards
Solved! Go to Solution.
@Anonymous , You need force that in a measure
example
measure A= if([measure] <0 , 0, [measure])
Hi,
you can use an if clause
Measure =
IF(
SUM('Finance vw_Debtor' [AR Balance]) - SUM('Finance vw_Debtor'[Credit Limit]) < 0,
0,
SUM('Finance vw_Debtor' [AR Balance]) - SUM('Finance vw_Debtor'[Credit Limit])
)
Does that help? If so, please
Thanks hashtag_pete