Hi,
I have a line of efs coding that uses && in it, what is the efs coding for "or"?
..present coding..
if ( ( PFWAW1Pct >= 90) && ( PFWAW1Pct <= 110) )
...to be changed to...
if ( ( PFWAW1Pct < 90) /*OR*/ ( PFWAW1Pct > 110) )
Thanks,
Paul
I have a line of efs coding that uses && in it, what is the efs coding for "or"?
..present coding..
if ( ( PFWAW1Pct >= 90) && ( PFWAW1Pct <= 110) )
...to be changed to...
if ( ( PFWAW1Pct < 90) /*OR*/ ( PFWAW1Pct > 110) )
Thanks,
Paul
Comment