Therber Posted October 20, 2002 Posted October 20, 2002 I'm combining two fields which have information originally entered via a portal. Normally, when information is changed in the portal the information in the related field updates automatically. However, I have found that when two fields have been combined the information will no longer automatically update (because it is now a caluclated field?). Is there a way to force an update when a change is made in the portal without a script - or do I need to just keep the fields separate? Thank You.
BobWeaver Posted October 20, 2002 Posted October 20, 2002 Sometimes you can append something that references the related values with an aggregate function that will force the recalculation Like this: CalcField = Relation::Field1 & Relation::Field2 & case(count(Relation::AnyField),"","") The case function doesn't add anything to the result, but it will force recalculation whenever anything in the related file changes.
Recommended Posts
This topic is 8071 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