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
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))