Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 7233 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

in a layout with many portals what is the cleanest way to calc an overall modification date based on the latest date of all related sections.

Posted

If your relationships are sorted by modification date descending,

Max( relone::moddate; reltwo::moddate; ... ; reln::moddate ),

if ascending,

Max( Last(relone::moddate); Last(reltwo::moddate); ... ; Last(reln::moddate) ),

if neither,

Max( Max(relone::moddate); Max(reltwo::moddate); ... ; Max(reln::moddate) ),

or an appropriate combination of the three.

If you want to include the parent record, just add the current table's moddate to the Max test.

This topic is 7233 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.