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.
Hi,
I am in the process of converting Business Objects reports to Power BI.
This is the formula for Objects in BO.
=If(IsNull([Invoicenumber]);[Amountbase]-[Reconciled];0)
=If([Itemsumbase]-[Amountbase] Where ([Itemsumbase]+0>0)<0;0; [Itemsumbase]-[Amountbase] Where ([Itemsumbase]+0>0))
Can you please let me know how to create DAX on PBI?
Thanks,
RS
Hi @Anonymous
first statement looks easy
If(ISBLANK([Invoicenumber]);[Amountbase]-[Reconciled];0)
not sure I understand second correct but it should be similar here
=
var _ifStatement = CALCULATE(SUMX(Table; [Itemsumbase]-[Amountbase]); [Itemsumbase]>0)
RETURN
If(_ifStatement<0; 0; _ifStatement)