Forum Discussion
syasmin25
6 years agoHelper V
If 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"
Greg_Deckler
6 years agoCommunity Champion
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"
- syasmin256 years agoHelper V
It worked! Thank you