November 27, 200619 yr Newbies I'm not sure how to do this, or if it can be done, so please forgive my ignorance. I want to be able to calculate a number based on the value of a few other feilds. The values of the other feilds are either "A","V", or "F". If the feilds all have a V, it would calculate a 10, if they all had F's, it would calculate a zero, if it was evenly mixed, there would be a 5. Does anyone understand what I am trying to say?
November 27, 200619 yr I'm having trouble understanding what you want to accomplish. I think you will probably have to hard code the calculation. One approach would be to do something like: Case ( Field1 = "V" and Field2 = "V" and Field3 = "V"; 10 ; Field1 = "F" and Field2 = "F" and Field3 = "F"; 0 ; 5 ) HTH Lee
November 27, 200619 yr It sounds like your fields should be separate records in a child table. Hard to say for sure with so little information.
Create an account or sign in to comment