Hi there
I was wondering if it is possible to use more than one test in the function IF().
What I want to do is changing the value to a fixed value if it drops below 0 or goes above 100.
At the moment, I am using
=IF([function]<0, [function], 0)
however, I would like to add this element too:
=IF([function]>100, [function], 100)
Is it possible to do both in one function?