Hi,
I have 2 cards- one containing mentee information, the other containing mentor information.
Once the 2 persons are in the mentoring , i link them by attaching one to another as trello attachment.
I want to add custom fields from the attachment to the card it is attached to.
How can i do that?
I tried Buttler with the following command:
when a card is moved into list "Active Mentoring", lookup the first card linked in the attachments, and set custom field "E-Mail" to "{{%Mentee E-Mail}}"
This does not work- what did i do wrong?
One good way to troubleshoot Butler is to try making the rule very simple and see what happens. Then if that works, add in the pieces until you figure out what isn't working.
So for example, you could start with
when a card is moved into list "Active Mentoring", add a Red label - just to check it's working.
Then try
when a card is moved into list "Active Mentoring", lookup the first card linked in the attachments, and change the title to the first card's title
etc.
Thanks for your reply. I did like you said to check what is the false "thought".
wrt: when a card is moved into list "Active Mentoring", lookup the first card linked in the attachments, and change the title to the first card's title
That is exactly what is NOT working:
I want to add the linked cards custom fields to the triggercard. e.g. i want that the name of the mentor appears as custom field "mentor name" in the mentee card (triggercard).
Basically I want to "merge" some of the information. This "take some information and copy it to another card" didnt work.
I only managed a workaround by using triggercard:
when an attachment is added to a card, find the first card linked in the attachments, and set custom field "Mentee" to "{triggercardname}"... but basically I want to utilize a formula, that is applicable not only to the triggercard name but also to other custom fields, etc.
Please let me know if you need any further explanation
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When you look up a card, all the card variables reference that looked up card and all the {trigger... variables reference the original card.
“When we find another card, that card becomes the current card, and all actions going forward occur on that card.”
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Michael, thanks for sharing the link.
Very specific: can I have a butler functionality to fill the triggercard with information from a linked card?
Nicole
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
lookup
instead of find
. The former doesn't change the current card in the context.when an attachment is added to a card, lookup the first card linked in the attachments, and rename the card to "{foundcardname}"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.