Newbies peggymcl Posted April 8, 2002 Newbies Posted April 8, 2002 Is there a way to set a field to look up information from other fields, and yet still allow modification? Specifically I have a donor with names and addresses etc. I have fields for title, first1, last1, title 2, first2, last2. I want the data base to automatically enter Mr. and Mrs. George Smith, unless I know the donor prefers to be listed as The Smith Family, in which case, I'd hand enter that listing.
Fitch Posted April 8, 2002 Posted April 8, 2002 Add an override field and then change your calculation to: Case (not IsEmpty(Override), Override, X) Where "X" is your original calculated entry. You can elaborate on this technique with another field for Greeting: Case (not IsEmpty(Override), Override, Greeting = "Formal", Title & " " & Last, Greeting = "Informal", First, Greeting = "Family", "The" & " " & Last & "Family)
Recommended Posts
This topic is 8266 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