Hello. Im trying to display multiple attributes (values) in one field on the report. Cant seem to make it work. Any idea?
=[POLine.ProjectID] & [PMProject.AttributeProjectID]
Hello. Im trying to display multiple attributes (values) in one field on the report. Cant seem to make it work. Any idea?
=[POLine.ProjectID] & [PMProject.AttributeProjectID]
Best answer by Robert Sternberg
I like to use the Concat function as it is more clear when viewing in the value property moving forward. The + sign will also work.
Here is a full function for the results.
=Concat([POLine.ProjectID], [PMProject.AttributeProjectID])
You can also modify this by using different values in the arguments of concat.
=Concat([POLine.ProjectID], ‘-’, [PMProject.AttributeProjectID])
=Concat([POLine.ProjectID], ‘ ‘, [PMProject.AttributeProjectID])
=Concat(‘PROJECT: ‘, [POLine.ProjectID], ‘PROJECT ATTRIBUTE: ‘, [PMProject.AttributeProjectID])
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.