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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a visual that shows Revenue. Prior to hanlding null values I had the auto format option selected and liked it. To handle (Blank) I used the following code with the format function.
RevYAGO_Viz = IF(ISBLANK([Rev_YAGO]), "-", FORMAT([Rev_YAGO],"$#,0"))
I have tried number was to replicate "$1.23bn", but come up short each time. Is this possible?
Perhaps by dividing by a billion and concatenating with "bn" but this would likely turn it into text and that probably would not be optimal.
I appreciate the response. Unfortunately that wouldn't be optimal because my sales data does transition between hundreds of thousands to billions. I might just have to keep it as is then. Thanks!