Here is an example of an if statement in labview
if (y==x && a[2][3]<a[0][1]) {
int32 temp;
temp = a[2][3];
a[2][3] = y;
y=temp;
}
else
x=y;
Another simple if statement
if (x>.004 && x<=.008)
y=.000267;
else if (x > .008 && x<= .012)
y = .000299;
else if (x > .012 && x<= .016)
y = .000322;
else if (x > .016 && x<= .020)
y = .000355 ;
else
y = .000400;
The thread still comes up in a search, the example will work in labview 2013..so your point is?