ejpvi Posted May 17, 2010 Posted May 17, 2010 Greetings, I have some ideas on how to do this, but I wanted to hear what others have done to accomplish this. I normally use Calculated fields to just have the data show up from a related table. One-to-many relationship usually. Recently, someone asked me to make it possible for him to Override the field if he wanted to. I wasn't sure how to proceed.... A calculated field, will always stay in sync with its related data... The only way I can think of producing this override feature would require it to be an "auto-fill" text field. If I were to change it to an "auto-fill" field it just fills in once, so if the other table was updated I would never see the change. Anyone have a nice way make this work? Where data stays in sync with the related data, unless overridden by the user?
comment Posted May 17, 2010 Posted May 17, 2010 You don't need a calculation field to show data from a related table - you can simply place the field from the related table on the layout. To override, you need a field for the overriding value and a calculation field to choose what to display, e.g. = Case ( IsEmpty ( Override ) ; Related::Field ; Override ) Or just use conditional formatting to show/hide the appropriate value.
Recommended Posts
This topic is 5362 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