Newbies LoadStar Posted March 3, 2009 Newbies Posted March 3, 2009 I am using an aggregate function (sum) in a field linked to a related database. The field in the other database is a calculation field... Round ( Meters–Owner * SIMs::BonusFactor perMtr ; 0 ) The problem is that when I change the value in the field, "SIMs::BonusFactor perMtr" the aggregate field does not update. As this data is important to projecting and estimating values, it needs to be current and update if any other values change. Is there a way to make sure that the fields update ASAP ? Thanks
comment Posted March 3, 2009 Posted March 3, 2009 I believe this is only a screen refresh issue (if you click into the field, do you see the correct value?). You can either make sure there is a window refresh following each modification of the SIMs::BonusFactor perMtr field, or change your aggregate calculation to: Let ( trigger = SIMs::BonusFactor perMtr ; Sum ( Related::CalculationField ) )
Newbies LoadStar Posted March 3, 2009 Author Newbies Posted March 3, 2009 "I believe this is only a screen refresh issue (if you click into the field, do you see the correct value?). " Yes to this question, but it was not always convenient and I am not the only one using the database, others are not FM dev users. This addition to the function worked beautifully. Have not had much experience with Let. Thanks so much.
comment Posted March 3, 2009 Posted March 3, 2009 Well, what I meant by the first suggestion was to force users into modifying the value through a scripted process only. But it should work either way.
Recommended Posts
This topic is 5803 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