Registered User Joined: 1/3/2007 Posts: 43
|
hello
I need PCF for ((C - C1) / C1 * 100) > - 10
thanks
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I guess that depends on what you mean. If you really want the Percent Change to be greater than negative ten percent, you could just put the -10 in parentheses:
((C - C1) / C1 * 100) > (-10)
If you want the Percent Change to be negative but the magnitude of the Percent Change to be greater than 10% instead, you would need to change the > to a < as well:
((C - C1) / C1 * 100) < (-10)
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF)
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|