Knowledge Base Articles
Breadcrumbs

Remote links not displayed

This article is for Data Center.

Problem

I created a formula that brings remote links, but in some cases, it's empty even though there are links. Also, it does not bring only the “Implements requirement” link type as defined in the formula.

Solution

Here is a formula example:

if contains(remotelinks.relationship, "implements requirement"): remotelinks.filter($.relationship = "implements requirement").title

The formula first checks if "implements requirement" exists among any link relationships. If it does, it then specifically filters the list of remote links to only include those with the "implements requirement" relationship, and then displays their titles.