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,
I need to convert formula from Excel to Powerbi as a calculated column to return true/false as a output
Excel - =AND(Column1="YES",OR(Column2="Done",Column2="InProgress"))
Dax calculated column ? Any help
Solved! Go to Solution.
@Anonymous , a new column
if(AND([Column1]="YES",OR([Column2]="Done",[Column2] ="InProgress")), true(), false() )
or
AND([Column1]="YES",OR([Column2]="Done",[Column2] ="InProgress"))
@Anonymous , a new column
if(AND([Column1]="YES",OR([Column2]="Done",[Column2] ="InProgress")), true(), false() )
or
AND([Column1]="YES",OR([Column2]="Done",[Column2] ="InProgress"))
User | Count |
---|---|
28 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |