mattyj Posted September 18, 2008 Posted September 18, 2008 Yet another question from a beginner I have a field set up with a drop down window for an anticipated life for a battery in years e.g. "2" "8" but I want a second field to automatically fill its self in when you select 2 or 8 I want the second field to automatically say 6000 or 21000 cycles depending on the time chosen. Am I way in over my head? Should I be thinking of a more simple way to do this?
Slobey Posted September 18, 2008 Posted September 18, 2008 make the cycle field a calc: case( yearfield = "2"; 6000; yearfield = "8"; 21000 )
Lee Smith Posted September 18, 2008 Posted September 18, 2008 Slobey has provided a calculation that will do what you request, it can be shorten if you are only having the two choices (i.e. 2 or 8) to: case( yearfield = 2; 6000; 21000 ) BTW, you don't have to put quotes around a number in a calculation. Lee
Recommended Posts
This topic is 6255 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 accountSign in
Already have an account? Sign in here.
Sign In Now