Need help with formula

  • Thread starter Thread starter JB
  • Start date Start date
J

JB

I tried using this formula to count how many days between two specific
days. I receive a wrong number of arguments error when using the
fucntion below. Any idea's why it won't work?

=Count(IIf([Days Old]>=3 and [Days Old]<=10))
 
One method would be

=Count(IIf([Days Old]>=3 and [Days Old]<=10,1,Null))

Another
=Abs(Sum(IIf([Days Old]>=3 and [Days Old]<=10))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top