0
我試圖找到一個基於這個代碼的兩個不同分類的類別,但我得到的通知是「elseif必須在匹配if或elseif之前」在前兩個分類上。elseif必須先匹配if或elseif?
if pof < 0.1 then CCat = "A"
elseif 0.1 < pof < 0.2 then CCat = "B"
elseif 0.2 < pof < 0.3 then CCat = "C"
elseif 0.3 < pof < 0.5 then CCat = "D"
else CCat = "E"
end if
if cof < 10000 then CCat = "A"
elseif 10000 < cof < 50000 then CCat = "B"
elseif 50000 < cof < 150000 then CCat = "C"
elseif 150000 < cof < 1000000 then CCat = "D"
else CCat = "E"
end if
是否有我的問題,如果條件? pof和cof都是之前完成的計算的結果。
哇感謝!它解決了這個問題哈哈 –