Jump to content

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

Recommended Posts

Posted

Short version: I need to create a field that concatenates info from a particular field in another, related file.

Long version: Two files, Main and Related, with a relationship based on Name field in both files. A field in Main ("Concatenation") needs to string together the contents of the "Info" field in all the related records in the "Related" file.

Any ideas?

TIA,

Dan

Posted

Create a value list in your main file using "related values" from the info field in your related file. Then, in your main file, define your new calculated field as:

Valuelistitems("Mainfile","ValuelistName")&Left("",Count(RelatedFile::info))

The Left...Count... business is to ensure that the field updates whenever you change the related data.

This topic is 8499 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.