Forum Discussion

syasmin25's avatar
syasmin25
Helper V
6 years ago
Solved

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...
  • Greg_Deckler's avatar
    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"

     

    syasmin25