Forum Discussion
syasmin25
Helper V
6 years agoIf statement
Hello, I have a pretty simple question. I am having some trouble trying to figure out what am I doing wrong here. I am providing the code here. I need a colmn that categorized the index. I am sti...
- 6 years ago
Two issues, use lower case if and you have an extra else if:
if [grade] > [proficiency_index] then "Above Grade" else if [grade] = [proficiency_index] then "At Grade" else "Below Grade"
Anonymous
6 years agoNot applicable
"Else" condition is missing in last "if" statement.
Or delete the last "if" statement as below.
If [grade] > [proficiency_index] then "Above Grade"
else if [grade] = [proficiency_index] then "At Grade"
else "Below Grade"