I am trying to establish an error pattern for a comparison. I want to ask Access to look at my database and if there is an error then I need it to calculate an average of four rates so that I can take that figure to a further calculation. Here is my needed end result: The average of the four rate types times the units equals a total that is compared to another total. I am very new and coming from a business area needing to do IT related work that I am at a loss with.
Here is the formula:
Here is the formula:
Code:
County Auth Cost: (IIf(([Units Authorized]="1"), Avg(([Auth FT Rate 1)+([Auth FT Rate 2])+([Auth FT Rate 3])+([Auth FT Rate 4])),Null))
Comment