I have seen this before in SQL and VB, I am now reverse engineering an Excel speadsheet and have come across the following formula:
=IF(D23<>0,"Insufficent",0)
I am converting it to ActionScript:
var result:String = [condition] ? 0 : "Insufficient";
but I am unsure of what D23 <> 0 means, is it simply "not equal"?