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"
camargos88
Community Champion
6 years ago
I believe it's missing the last else:
If [grade] > [proficiency_index] then "Above Grade"
else
if [grade] = [proficiency_index] then "At Grade"
else
if [grade] < [proficiency_index] then "Below Grade"
else ????