Jump to content
Server Maintenance This Week. ×

Feild value based on value of other feilds


This topic is 6359 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • 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?

Link to comment
Share on other sites

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

Link to comment
Share on other sites

This topic is 6359 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.