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