我遇到if-else语法问题。该错误表示剩余的文本似乎不是公式的一部分。我该如何解决这个问题?
NumberVar k:={@Counting_Data}/{@Counting_Fail}
if k > 2 then
StringVar l:="Failed"
else if k <= 2 and k>0
StringVar l:="Promoted"
else if k = 0 then
StringVar l:="Passed"
else ""
答案 0 :(得分:1)
NumberVar k:={@Counting_Data}/{@Counting_Fail};
if k > 2 then
StringVar l:="Failed"
else if k <= 2 and k>0 then
l:="Promoted"
else if k = 0 then
l:="Passed"
else ""