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
How can I convert this excel formula in column I4 and create a calculated column in Power BI?
=IF(COUNTIF(V4:W4,"Yes")=2, 1, IF(COUNTIF(V4:W4,"Yes")=1, 0.5, 0))
Try:
Solution = if(AND(Table1[Column V]="Yes",Table1[Column W]="Yes"),1,if(OR(Table1[Column V]="Yes",Table1[Column W]="Yes"),.5,0))