Sign In
Register
Home
›
The Astronauts (Q&A)
Can I set an iif condition to "does not equal"?
Aston
Posts:
12
✭
September 2020
in
The Astronauts (Q&A)
I tried iif(Example != "G", 0, 1).
0
Best Answer
dearner
Posts:
202
admin
September 2020
Accepted Answer
In VB .NET, the "does not equal" operator is <>. Try "iif(Example <> "G", 0, 1)
5
Sign In
or
Register
to comment.