Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 5/31/2006 Posts: 47
|
Hi
I am using the following %true indicator for readings => .3 How do I tell it to be true for equal to or less than negative .3? Thanks
Mark
(C - C20) / (ABS(C - C1) + ABS(C1 - C2) + ABS(C2 - C3) + ABS(C3 - C4) + ABS(C4 - C5) + ABS(C5 - C6) + ABS(C6 - C7) + ABS(C7 - C8) + ABS(C8 - C9) + ABS(C9 - C10) + ABS(C10 - C11) + ABS(C11 - C12) + ABS(C12 - C13) + ABS(C13 - C14) + ABS(C14 - C15) + ABS(C15 - C16) + ABS(C16 - C17) + ABS(C17 - C18) + ABS(C18 - C19) + ABS(C19 - C20)) =>.3
|
|
Registered User Joined: 1/28/2005 Posts: 6,049
|
Change this: =>.3
to this: =<(-.3)
Thanks
diceman
|
|
Registered User Joined: 5/31/2006 Posts: 47
|
Thank you!
|
|
Registered User Joined: 1/28/2005 Posts: 6,049
|
Now that Im looking at it the form in your original should probably be:
>=.3
and your new one should be:
<=(-.3)
You typically put the "<" before the "=" but Ive never checked if it works the other way.
Thanks
diceman
|
|
Guest-1 |