Dear Community,
I want to write an effector to solve the following problem:
I want to run the effector so that it copies and pastes a field value from an item to another item in another project. Both items are linked over one field value.
Example.
Project 1
Item A:
Liked field value: x
Value points: 200 <-- I want to copy and paste this value with an effector to Item B in Project 2 with an effector.
Project 2
Item B:
Linked field value: x
Value points: (Empty)
Best Regards
Hi Floris,
Welcome to the community!
This is actually pretty easy to solve with Expr. We can access issue links, and then pull in values from the linked issues. I'll assume the link is a blocks type, but you can look for any type.
issueLinks.FILTER($.destination = this and $.type = "blocks").map($.source.value_points)
issue links contains all links, $ represents each link which has a source issue, destination issue and type. Here we look for blocks type links that point to this (current issue), then we map to return all value points from the source issue (i.e. the issue blocking this issue) as there could be multiple links, so we might return multiple values.
Also here is the relevant documentation. issue links definition and issue link examples
Cheers,
Nick [ALM Works]
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.