Formula

  • Thread starter Thread starter Jenn
  • Start date Start date
J

Jenn

The answer to this question is proably quite simple. What
I'm currently working on a query, and I need to create a
section that the result is the sum of numbers between
1000 and 2000 but i'm not sure how to do it. It's proably
a simple formula that I just haven't fell upon. I could
use any advice. Email me with the answer. Thanks so
much.
 
Perhaps what you want is

Sum(IIF(SomeField>=1000 and SomeField<=2000,SomeField,0)

However, I can't really decide for sure what you wish to accomplish.
 
Back
Top