Our full technical support staff does not monitor this forum. If you need assistance from a member of our staff, please submit your question from the Ask a Question page.


Log in or register to post/reply in the forum.

RTMC plotting range check


AMK Aug 7, 2012 12:00 AM

Hello,
Can someone suggest syntax for this?

Alias (N, "Station:105.Ta" ); IIf(N<-50 or >60,NoPlot,N)

This works for the ,-50 part, but not for the >60 part.

Thanks,
AMK


smh Aug 8, 2012 02:26 PM

Try

Alias (N, "Station:105.Ta" ); IIf(N<-50 or N>60,NoPlot,N)


AMK Aug 8, 2012 10:18 PM

That worked! Thanks for the note.

Log in or register to post/reply in the forum.