สอบถามเกี่ยวกับ if then else if ใน Crystal report V.14 ครับ
ปกติจะใช้แบบนี้
if เงื่อนไข1 then ผลลัพท์1
else if เงื่อนไขคือถ้าผลลัพท์1=0 then ผลลัพท2
else if เงื่อนไขคือถ้าผลลัพท์2=0 then ผลลัพท3
else if เงื่อนไขคือถ้าผลลัพท์3=0 then ผลลัพท4
...
else ()
ตัวอย่าง
if isnull({@BeforVat}) then ({@SumApplie})
else if isnull({@SumApplie}) then {@SumDebit}
else {@BeforVat}