Maxwell Morlay Posted September 8, 2004 Posted September 8, 2004 I need TixBought field to auto-enter an X if data was entered in Tix2002, Tix2003 and Tix2004. Thanks for your help. Maxwell Morlay
Lee Smith Posted September 8, 2004 Posted September 8, 2004 Case( not IsEmpty(Tix2002) , "X", not IsEmpty(Tix2003) , "X", not IsEmpty(Tix2004) , "X", "")
MoonShadow Posted September 9, 2004 Posted September 9, 2004 You did use the AND expression. If you only want an 'X' if all three fields are filled in - and they will be filled in at different times, you will need a calculation instead of an Auto-Enter on a standard field. A standard field will not update the value once you have left the record. The calculation would be text with: Case(not IsEmpty(Tix2002) and not IsEmpty(Tix2003) and not IsEmpty(Tix2004), "X") Auto-enter on a regular text field will update in vs. 7 if all three fields are filled in at different times if you unclick 'Do not Replace Existing Value..."
Lee Smith Posted September 9, 2004 Posted September 9, 2004 Hi Moon, I read Maxwell's post as an "or" calculation "field" with a result of "X" if data appeared in any of the three fields. I thought that Maxwell meant by "Auto" was he didn't want to enter the "X" manually. Oh well, now he has more than one way to skin that proverbial cat. [color:"red"]Without having to upgrade to v7
Maxwell Morlay Posted September 9, 2004 Author Posted September 9, 2004 Thanks, Lee. It works Great! Maxwell Morlay
Recommended Posts
This topic is 7726 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