sorry, I misread your first sentence in your first post, your're right.
normal distribution(q, mu, sigma) gives the probability of of a value being less or equal than q when drawn from a normal distributed population with parameters mu and sigma (see manual or e.g. scripting index).
So the probability of a value being higher than q is:
1-normal distribution(q, mu, sigma).
Have a look at the scripting index, there you will find it as written below.
The normal distribution function is the integral of the normal density function you saw in the distribution calculator.
Names Default To Here( 1 );
New Window( "Example: Normal Distribution",
y = Graph Box(
Y Scale( 0, 1 ),
X Scale( -4, 4 ),
XName( "q" ),
Pen Color( "red" );
Y Function( Normal Distribution( q ), q );
)
);
Georg