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.
Hello guys,
Can anyone help me i have this excel formula that i need to replicate in power query.
Here is my data table.
My formula in excel :
=IF(X3>=71%,"GOOD",IF(X3>=50%,"SATISFACTORY",IF(X3>=1%,"NEED IMPROVEMENT")))
Really appreciate any help guys.
I forgot to mentioned that i am using below formula to get average performance for each Questions before doing the formula above
Using formula
=COUNTIF(Data!I:I,K2) and theni just get the average
Add column
Performance =
In power query:
= Table.AddColumn(Custom1, "Performance", each if [ColumnX] >= 71 then "GOOD" else if [ColumnX] >= 50 then "SATISFACTORY" else if [ColumnX] >= 1 then "NEED IMPROVEMENT" else null)