The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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))