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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Just got a request from leadership to change the way our basis points are displayed. A third party vendor created this model and I'm tasked with managing it going forward.
Here is the DAX formula they created:
The expected result where it's highlighted is (10,000bps) and (8,182bps). For some reason, in the IF statement, it's not recognizing the negatives, and it's just multiplying by 1, as opposed to 10000 like it's supposed to do.
Any ideas on how to get this to work?
Thx
Solved! Go to Solution.
@peterg0417 Should be this:
* IF ( FormatToUse IN { "0bps;(0bps)"}, 10000, 1 ),
Hi @peterg0417 ,
Try modifying your IF statement as below:
@peterg0417 Should be this:
* IF ( FormatToUse IN { "0bps;(0bps)"}, 10000, 1 ),
Ahh yes, that makes sense
This whole custom formatting is very new to me so thank you for the quick solution