Forum Discussion
netteSJ
3 years agoFrequent Visitor
Replicating excel formula
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>...
vicky_
Super User
3 years agoIn 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)