How could I test if a value is NaN in C2?
Edit: Figured out right after posting. One way to do it is to compare it against itself. If it's not equal to itself, it's NaN. So you'd do something like: if (Variable != Variable) { ... }.
I'm leaving this post here for reference in case someone else ends up needing this.