Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I've created several expressions from which I need an overall average.
The sum expression I've created is a simple addition:
Expression1 + Expression2 + Expression3 .........
However, the expression only gives a value if all the expressions have a value. How do I get a total/average if any of the constituent expressions is missing?
Any help on this gratefully received,
Racine62
try using
rangemax(Expression1, 0) + rangemax(Expression2,0) etc.. etc...
Thanks for this,
Racine62