[vba] What does <> mean?

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"?

This question is related to vba excel

The answer is


Yes in SQl <> is the same as != which is not equal.....excepts for NULLS of course, in that case you need to use IS NULL or IS NOT NULL


could be a shorthand for React.Fragment


"Does not equal"


It means not equal to. The same as != seen in C style languages, as well as actionscript.


I instinctively read it as "different from". "!=" hits me milliseconds after.


Yes, it's "not equal".